Skip to content

Commit

Permalink
Merge pull request #46 from abusix/pla-699-add-type-check-github-acti…
Browse files Browse the repository at this point in the history
…on-for-hailstorm

feat(actions): add type check action
  • Loading branch information
mnlfischer authored Oct 10, 2023
2 parents 787ed87 + 2b9212c commit 7b413ff
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/type-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Type Check

on: push

env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run type-check

0 comments on commit 7b413ff

Please sign in to comment.