From 25d0859c1344497317a3576a655c5af5a9d7021a Mon Sep 17 00:00:00 2001 From: Jakob Miksch Date: Mon, 20 May 2024 21:27:52 +0200 Subject: [PATCH] Make lint stricter --- .github/workflows/lint.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7f9e28c..ad03fce 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,13 +8,10 @@ on: jobs: build: - runs-on: ubuntu-latest - strategy: matrix: node-version: [18.x, 20.x] - steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -24,5 +21,7 @@ jobs: cache: 'npm' - run: npm ci - run: npm run lint + - run: npm run type-check + - run: npm run format - run: npm run build - +