Skip to content

Commit

Permalink
Add GitHub CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Jan 10, 2024
1 parent a67fbe2 commit 402124c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build & test

on:
pull_request:
push:
branches:
- "*"
tags-ignore:
- "*"

jobs:
main:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: npm install
- name: Build & Typecheck
run: npm run build
- name: Lint
run: npm run lint

0 comments on commit 402124c

Please sign in to comment.