Skip to content

Commit

Permalink
add type check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kainpets committed Nov 2, 2023
1 parent 2d2cf51 commit fcdd85e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Check

on:
push:
branches:
- "**"

jobs:
typecheck:
name: Typecheck (Node.js v${{ matrix.node }})
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
registry-url: "https://npm.pkg.github.com"
- run: npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.SEAMAPI_NPM_TOKEN }}
# - run: npm run build
- name: Check types
run: npm run typecheck

0 comments on commit fcdd85e

Please sign in to comment.