Skip to content

Commit

Permalink
ci: add node v18 to test workflow (#130)
Browse files Browse the repository at this point in the history
* ci: add node v18 to test workflow

* ci: use v18.x for github actions
  • Loading branch information
amareshsm committed Jul 2, 2022
1 parent e804496 commit dff57cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Lint files
Expand All @@ -25,10 +25,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16.x, 14.x, 12.x]
node: [18.x, 16.x, 14.x, 12.x]
include:
- os: windows-latest
node: "16.x"
node: "18.x"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit dff57cc

Please sign in to comment.