Skip to content

chore(deps-dev): bump nx from 19.6.0 to 20.0.2 #888

chore(deps-dev): bump nx from 19.6.0 to 20.0.2

chore(deps-dev): bump nx from 19.6.0 to 20.0.2 #888

Workflow file for this run

name: Retro CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "21"
- name: Install dependencies
run: npm ci
- name: Prettier check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build app
run: npm run build
- name: Test
run: npm test
- name: Install playwright browsers
if: ${{ vars.SKIP_E2E != 'true' }}
run: npx playwright install --with-deps
- name: Run e2e tests
if: ${{ vars.SKIP_E2E != 'true' }}
run: npm run e2e