Skip to content

Commit

Permalink
ci: update syntax to use filter
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack committed May 21, 2024
1 parent a59dbb0 commit 289f118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build --ignore 'examples/**'
run: npm run build -- --filter './packages/*'
- name: Run arethetypeswrong
working-directory: ${{ matrix.workspace }}
run: npx @arethetypeswrong/cli --pack .
Expand All @@ -71,6 +71,6 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build --ignore 'examples/**'
run: npm run build -- --filter './packages/*'
- name: Type check
run: npm run type-check

0 comments on commit 289f118

Please sign in to comment.