diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f6ada13..b0aee326 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,23 @@ permissions: contents: read jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 'lts/*' + + - name: Install Node.js dependencies + run: npm install --ignore-scripts --include=dev + + - name: Lint code + run: npm run lint + test: name: Test - Node.js ${{ matrix.node-version }} runs-on: ubuntu-latest @@ -34,9 +51,6 @@ jobs: - name: Run tests run: npm run test-ci - - name: Lint code - run: npm run lint - - name: Upload code coverage uses: actions/upload-artifact@v4 with: