Skip to content

Commit

Permalink
Fix github actions for CI
Browse files Browse the repository at this point in the history
  * Update deprecated yml that stopped working ~5mo ago
  * Also add Node 20.x in the matrix
  • Loading branch information
takikawa committed Oct 3, 2024
1 parent 6a60a6a commit d8f2826
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

name: Node.js CI

variables:
GIT_SUBMODULE_STRATEGY: recursive

on:
push:
branches: [ "main" ]
Expand All @@ -19,11 +16,13 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit d8f2826

Please sign in to comment.