CI: move away from Node.js v12

Github is deprecating it in Actions, and it's already past EOL
This commit is contained in:
larabr
2022-10-12 13:27:39 +02:00
committed by larabr
parent 5957bab2e2
commit 9a935ed559
6 changed files with 16 additions and 20 deletions

View File

@@ -17,12 +17,12 @@ jobs:
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci