diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 5605ed95..31db4297 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -16,13 +16,13 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x] + node: [14, 16, 18] steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node }} + uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - run: npm ci - run: npm run lint