Skip to content

Commit

Permalink
Merge pull request #48 from windyakin/windyakin_20240314_aeabe56524
Browse files Browse the repository at this point in the history
リリースで使うNodeを18、20のCIを追加する
  • Loading branch information
windyakin authored Mar 14, 2024
2 parents b3c0a77 + 9e1ccfd commit b31d89e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use Node.js 16.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x

- run: yarn

Expand All @@ -29,14 +29,17 @@ jobs:
browser:
- firefox
- chrome
node:
- 18.x
- 20.x

steps:
- uses: actions/checkout@v4

- name: Use Node.js 16.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: ${{ matrix.node }}

- run: yarn

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- run: yarn

Expand Down

0 comments on commit b31d89e

Please sign in to comment.