Skip to content

Commit

Permalink
Update nodejs in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mPyKen committed Jan 30, 2024
1 parent ce220d3 commit 0df589d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
node-version: 18
- name: install dependencies
run: npm ci
- name: build
Expand All @@ -26,19 +26,19 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
node-version: 18
- name: install dependencies
run: npm ci
- name: build
run: npm run make

build_on_win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
node-version: 18
- name: install dependencies
run: npm ci
- name: build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
node-version: 18
- name: install dependencies
run: npm ci
- name: publish
Expand All @@ -26,21 +26,21 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
node-version: 18
- name: install dependencies
run: npm ci
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish

publish_on_win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
node-version: 18
- name: install dependencies
run: npm ci
- name: publish
Expand Down

0 comments on commit 0df589d

Please sign in to comment.