diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a336f55..7c6df3f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,14 +9,13 @@ on: jobs: lint: runs-on: ubuntu-latest + strategy: + matrix: + node-version: ['20'] steps: - - name: Set Node.js 20.x - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 20.x - - - name: Install dependencies - run: npm install --package-lock-only - - - name: Lint - run: npm run lint + node-version: ${{ matrix.node-version }} + - run: npm install --package-lock-only + - run: npm run lint