Skip to content

chore(deps-dev): bump nx from 21.0.3 to 21.1.0 #222

chore(deps-dev): bump nx from 21.0.3 to 21.1.0

chore(deps-dev): bump nx from 21.0.3 to 21.1.0 #222

Workflow file for this run

name: CI
on: [push]
env:
CI: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: npm install and lint
run: |
npm ci
npm run-script lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 18.x, 16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test