Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Merge pull request #1 from jwcub/dependabot/github_actions/actions/se… #6

Merge pull request #1 from jwcub/dependabot/github_actions/actions/se…

Merge pull request #1 from jwcub/dependabot/github_actions/actions/se… #6

Workflow file for this run

name: ʦ Type check
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: ./package.json
node-version: 18
- name: 📥 Install deps
run: npm install
- name: 🔎 Type check
run: npm run typecheck