Disable running only affected packages in CI (#1449)

This commit is contained in:
Nathan Bierema 2023-08-07 10:50:43 -04:00 committed by GitHub
parent bb9bd907c5
commit fbd031818d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,10 +25,10 @@ jobs:
- name: Check formatting
run: pnpm run format:check
- name: Build
run: pnpm exec nx affected --target=build --parallel=1
run: pnpm run build:all
- name: Lint
run: pnpm exec nx affected --target=lint --parallel=1
run: pnpm run lint:all
- name: Test
uses: GabrielBB/xvfb-action@v1
with:
run: pnpm exec nx affected --target=test --parallel=1
run: pnpm run test:all