Skip to content

chore: fix nx migration #1270

chore: fix nx migration

chore: fix nx migration #1270

Workflow file for this run

name: ci
on:
pull_request:
paths-ignore:
- '*.md'
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run nx -- affected:build
- run: npm run nx -- affected:test --parallel=1