From 5c8b3503736f06e05e358888f569b4b2da4d62ca Mon Sep 17 00:00:00 2001 From: Aylur <104676705+Aylur@users.noreply.github.com> Date: Sun, 20 Aug 2023 17:58:55 +0200 Subject: [PATCH] Create lint.yml --- .github/workflows/lint.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..70260eb --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,16 @@ +name: Lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: lint and typecheck + uses: actions/setup-node@v3 + with: + node-version: latest + cache: 'npm' + - run: npm ci + - run: npm test