Fix advanced filter on nullable field (#482) #1068
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E, Lint & Unit tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
start: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Enable corepack | |
run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- name: Cache playwright dependencies | |
id: cache-playwright | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ hashFiles('**/yarn.lock') }} | |
- name: Start docker-compose | |
run: docker compose up -d | |
- name: Install dependencies | |
run: yarn install | |
- name: Run linter | |
run: yarn lint | |
- name: Run typecheck | |
run: yarn typecheck | |
- name: Install playwright dependencies | |
if: steps.cache-playwright.outputs.cache-hit != 'true' | |
run: npx playwright install --with-deps | |
- name: Fill database | |
run: yarn database | |
- name: Build packages | |
run: yarn build:example | |
- name: Start server | |
run: yarn start:example & | |
- name: Run tests | |
run: | | |
yarn test | |
yarn turbo test:e2e | |
cd apps/example && yarn prisma db seed && cd - | |
BASE_URL=http://localhost:3000/pagerouter/admin yarn test:e2e | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |