Skip to content

Commit

Permalink
Update GitHub actions
Browse files Browse the repository at this point in the history
See [#22][0].

[0]: #22
  • Loading branch information
Fdawgs committed Jul 11, 2022
1 parent 23b429e commit 6de09b8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@ name: Node.js CI

on: [push]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 16.x]
node-version: [12.x, 14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down

0 comments on commit 6de09b8

Please sign in to comment.