mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2025-04-18 19:43:12 +03:00
run only on node 16
This commit is contained in:
parent
dcb324cdc7
commit
0d3e15b1cd
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user