Skip to content

Commit

Permalink
chore: update Workflows (typicode#1125)
Browse files Browse the repository at this point in the history
Remove nodejs 12 as it is EOL
Updated workflows to use nodejs 16
  • Loading branch information
Daniele Basso authored and nikoladavitkovski committed Sep 2, 2022
1 parent 827e2ba commit 09f2462
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Expand Up @@ -12,13 +12,13 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down

0 comments on commit 09f2462

Please sign in to comment.