From 0d3e15b1cd25fdc19ad6450d6b1c49658e84ead4 Mon Sep 17 00:00:00 2001 From: Artem Vasilev Date: Thu, 10 Nov 2022 18:02:32 +0300 Subject: [PATCH] run only on node 16 --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d244428..afa46b5 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [ 16, lts/* ] + node-version: [ 16 ] steps: - uses: actions/checkout@v3 @@ -21,6 +21,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + check-latest: true - name: Clean install, build, test run: | @@ -33,10 +34,12 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Use Node.js LTS + - name: Use Node.js 16 uses: actions/setup-node@v3 with: - node-version: lts/* + node-version: 16 + check-latest: true + - name: Clean install, lint run: | npm ci