Skip to content

Commit

Permalink
ci/attw: make checks for @styra/opa stricter using --profile (#362)
Browse files Browse the repository at this point in the history
Previously, we had to skip rules for all engines, I believe. Now, we only
ignore node10. This was made possible by a feature recently merged
into attw.
  • Loading branch information
srenatus authored Nov 12, 2024
1 parent 7af5a08 commit 124c2ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ jobs:
- name: test
run: npm run -w ${{ matrix.pkg }} --if-present test
- name: docs
run: npx -w ${{ matrix.pkg }} --if-present typedoc
run: npx -w ${{ matrix.pkg }} typedoc
- name: are the types wrong?
run: npx -w ${{ matrix.pkg }} attw --pack
if: matrix.pkg != 'packages/opa'
- name: are the types wrong? (opa)
run: npx -w ${{ matrix.pkg }} attw --pack --ignore-rules no-resolution
run: npx -w ${{ matrix.pkg }} attw --pack --profile node16
if: matrix.pkg == 'packages/opa'
- name: jsr publish dry-run
run: npx -w ${{ matrix.pkg }} jsr publish --dry-run
Expand Down

0 comments on commit 124c2ab

Please sign in to comment.