Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
asamuzaK committed Oct 25, 2023
1 parent ab4c998 commit f060ffe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
include:
- node-version: 18.x
- node-version: 20.x
os: ubuntu-latest
python-version: '3.x'
asset-name: linux-x86_64.tar.gz
Expand All @@ -23,7 +23,7 @@ jobs:
make-args: --make-args="-j4"
zip-cmd: cd ./pkg/linux && tar -cvzf linux-x86_64.tar.gz LICENSE README.md README.ja.md index && cd ../../
zip-mime: application/gzip
- node-version: 18.x
- node-version: 20.x
os: macos-latest
python-version: '3.x'
asset-name: macos.tar.gz
Expand All @@ -32,7 +32,7 @@ jobs:
make-args: --make-args="-j4"
zip-cmd: cd ./pkg/macos && tar -cvzf macos.tar.gz LICENSE README.md README.ja.md index && cd ../../
zip-mime: application/gzip
- node-version: 18.x
- node-version: 20.x
os: windows-latest
python-version: '3.x'
asset-name: win64.zip
Expand All @@ -57,7 +57,7 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
uses: ilammy/msvc-dev-cmd@v1
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
check-latest: true
node-version: ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
build:
strategy:
matrix:
node-version: [ 18.x, 20.x ]
node-version: [ 18.x, 20.x, 21.x ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit f060ffe

Please sign in to comment.