Skip to content

Commit

Permalink
Set up ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScorpion committed Nov 10, 2023
1 parent 4ab4969 commit 687d6dc
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
@@ -0,0 +1,16 @@
name: CI

on: [ push ]

jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
- run: npm run type-check
- run: npm run lint
- run: npm run build

0 comments on commit 687d6dc

Please sign in to comment.