Skip to content

Commit

Permalink
ci(test): run lint and tsc in CI (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscard0m authored Sep 24, 2024
1 parent 9b66dc4 commit fd71b66
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,12 @@ jobs:
steps:
- run: exit 1
if: ${{ needs.test_matrix.result != 'success' }}
- run: echo "Tests execution finished successfully! ✅"
- 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 fd71b66

Please sign in to comment.