Skip to content

chore: fix nx migration #1271

chore: fix nx migration

chore: fix nx migration #1271

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
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run nx -- affected:build --base=origin/main --head=HEAD
- run: npm run nx -- affected:test --parallel=1 --base=origin/main --head=HEAD