Skip to content

Commit

Permalink
WIP: Create basic checks action
Browse files Browse the repository at this point in the history
  • Loading branch information
ollieri3 committed Nov 1, 2023
1 parent e39a685 commit bf6ff56
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Checks
on: push
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"

- name: Install dependencies
run: npm install

- name: Type Check
run: npm run ts:check

- name: Type Check (FE)
run: npm run ts:check:fe

0 comments on commit bf6ff56

Please sign in to comment.