From 402124c3d8203b313446ca0d59ff160a666cbd35 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Wed, 10 Jan 2024 11:12:18 +0100 Subject: [PATCH] Add GitHub CI script --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d6d870a --- /dev/null +++ b/.github/workflows/ci.yml @@ -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