Skip to content

Commit

Permalink
fix (ci): add ci step for type check
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-kerjean committed Nov 13, 2023
1 parent e72d4a2 commit bac05fd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,22 @@ jobs:
cd ./test/unit_js
npm test
verify_frontend:
needs: [build_frontend, build_backend]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Setup
run: cd public && npm install
- name: Run
run: |
cd public
npx eslint .
npx tsc
test_backend:
needs: [build_frontend, build_backend]
runs-on: ubuntu-latest
Expand Down

0 comments on commit bac05fd

Please sign in to comment.