Skip to content

Commit

Permalink
chore: add node 20 to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Aug 31, 2023
1 parent a3d828d commit d8c92dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x
- name: Prepare Environment
run: |
yarn install
Expand All @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -61,9 +61,9 @@ jobs:
CI: true
- name: Send coverage
uses: codecov/codecov-action@v3
if: matrix.node-version == '14.x'
if: matrix.node-version == '18.x'
- name: Check docs generation
if: matrix.node-version == '14.x'
if: matrix.node-version == '18.x'
run: |
yarn docs:test
env:
Expand All @@ -85,10 +85,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x
- name: Check release is desired
id: do-publish
run: |
Expand Down Expand Up @@ -149,10 +149,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x
- name: Prepare Environment
run: |
yarn install
Expand All @@ -176,10 +176,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x
- name: Prepare Environment
run: |
yarn install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x]
node-version: [14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -44,10 +44,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x
- name: Check release is desired
id: do-publish
run: |
Expand Down

0 comments on commit d8c92dd

Please sign in to comment.