Skip to content

fix prettier version #252

fix prettier version

fix prettier version #252

Workflow file for this run

name: CI
on:
push:
branches: [master, feature/*]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 18
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx nx run-many --target lint
- run: npx nx run-many --target test --coverage
- run: npx nx run-many --target e2e --parallel=false