Skip to content

docs(README): update link for NACS Part 4 article #8

docs(README): update link for NACS Part 4 article

docs(README): update link for NACS Part 4 article #8

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run all tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Sync Nx workspace
run: npx nx sync
- name: Test
run: npx nx run-many --target=test --all