Skip to content

Commit

Permalink
ci run build (#722)
Browse files Browse the repository at this point in the history
* ci(test): use node cache for 'test' job

* ci(test): run tsc via npm run build in CI
  • Loading branch information
oscard0m authored Sep 24, 2024
1 parent 439dc38 commit c9269b0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
- run: exit 1
if: ${{ needs.test_matrix.result != 'success' }}
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run build
if: ${{ always() }}

0 comments on commit c9269b0

Please sign in to comment.