Skip to content

Commit

Permalink
Upgrade CI to use latest node (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte authored Oct 2, 2022
1 parent 58493f8 commit 7e1cf0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js LTS (14.x)
- name: Use Node.js LTS (16.x)
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 16.x

- name: Install project dependencies
run: yarn install --frozen-lockfile --ignore-scripts
Expand All @@ -29,7 +29,7 @@ jobs:

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

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout PR
uses: actions/checkout@v2

- name: Use Node.js LTS (14.x)
- name: Use Node.js LTS (16.x)
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 16.x

- name: Install project dependencies
run: yarn install --frozen-lockfile --ignore-scripts
Expand All @@ -29,7 +29,7 @@ jobs:

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

steps:
- name: Checkout PR
Expand Down

0 comments on commit 7e1cf0f

Please sign in to comment.