Skip to content

Add the ability to disable the cookie banner (WPCC) by default for self-hosted instances #1141

Add the ability to disable the cookie banner (WPCC) by default for self-hosted instances

Add the ability to disable the cookie banner (WPCC) by default for self-hosted instances #1141

Workflow file for this run

name: 'Tests & Linting'
on:
push:
branches: [master, develop]
pull_request:
branches: []
jobs:
test-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- run: yarn ci-test
- run: yarn lint
- run: yarn build
test-backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- run: yarn ci-test
- run: yarn lint
- run: yarn build
test-marketing:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./marketing
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- run: yarn lint
- run: yarn build
test-docs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./docs
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- run: yarn typecheck
- run: yarn build