Skip to content

Commit

Permalink
ci: adapt to npm workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
balzdur committed Jul 11, 2023
1 parent ff4b0a7 commit c5307fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:

- run: npm ci

- run: npx nx format:check
- run: npx nx affected -t lint --parallel=3
- run: npx nx affected -t type-check --parallel=3
- run: npx nx affected -t test --parallel=3 --configuration=ci
- run: npx nx affected -t build --parallel=3
- run: npm run format:check
- run: npm run lint --workspaces
- run: npm run type-check --workspaces
- run: npm run test:all
- run: npm run build --workspaces --if-present

0 comments on commit c5307fe

Please sign in to comment.