Skip to content

chore: bump to nx 22.3.3 #475

chore: bump to nx 22.3.3

chore: bump to nx 22.3.3 #475

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
permissions:
actions: read
contents: read
jobs:
build-and-run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install last version of npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Set Nx SHAs
uses: nrwl/nx-set-shas@v4
- name: Run lint
run: npm run lint:ci
- name: Run tests
run: npm run test:ci