From 773ebf4b9f395e398ab549c18017764846378ef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Schwert?= Date: Tue, 29 Oct 2024 08:21:46 +0100 Subject: [PATCH] Create lint-and-check.yml CI workflow --- .github/workflows/lint-and-check.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/lint-and-check.yml diff --git a/.github/workflows/lint-and-check.yml b/.github/workflows/lint-and-check.yml new file mode 100644 index 0000000..79b2058 --- /dev/null +++ b/.github/workflows/lint-and-check.yml @@ -0,0 +1,23 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Lint and Check + +on: + - push + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/cache@v4 + with: + path: '**/node_modules' + key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} + - name: Check formatting + run: yarn fmt:check + - name: Check lints + run: yarn lint + - name: Check types + run: yarn typecheck