diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index 2c9298c..68e835c 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -9,7 +9,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [8.x, 10.x, 12.x] + node-version: + - 10.x + - 12.x + - 14.x + - 16.x + - 18.x + - 20.x + - 22.x steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -48,7 +55,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 20.x, 18.x] + node-version: + - 10.x + - 12.x + - 14.x + - 16.x + - 18.x + - 20.x + - 22.x steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -64,4 +78,4 @@ jobs: if ! git diff --exit-code -- . ':!dist/*.map' ':!package-lock.json' ; then echo "Working tree dirty at end of job" exit 1 - fi + fi \ No newline at end of file