Skip to content

Commit

Permalink
Node.jsバージョンの更新
Browse files Browse the repository at this point in the history
  • Loading branch information
yotigory committed Nov 15, 2024
1 parent 27ddbf4 commit fb6f18e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['12.x', '14.x', '16.x']
node: ['14.x', '16.x', '18.x'] # 12.xを削除し、より新しいバージョンを追加
os: [ubuntu-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3 # v2からv3にアップデート

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3 # v1からv3にアップデート
with:
node-version: ${{ matrix.node }}

Expand All @@ -32,4 +32,4 @@ jobs:
run: npm test --ci --coverage --maxWorkers=2

- name: Build
run: npm run build
run: npm run build

0 comments on commit fb6f18e

Please sign in to comment.