Skip to content

Commit

Permalink
Merge pull request #82 from solaoi/feature_update-nodejs-to-v18
Browse files Browse the repository at this point in the history
Feature update nodejs to v18
  • Loading branch information
solaoi committed May 3, 2022
2 parents 3b6a417 + 85a7073 commit fea4b21
Show file tree
Hide file tree
Showing 7 changed files with 1,008 additions and 961 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'

- name: Cache dependencies
uses: actions/cache@v2
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/go-deps-scan.yml
Expand Up @@ -4,8 +4,6 @@ on:
schedule:
- cron: "0 3 * * *" # 毎日の正午に実行 ( 12+JST = 3+UTC )
workflow_dispatch:
branches:
- main

defaults:
run:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/nodejs-deps-scan.yml
Expand Up @@ -4,8 +4,6 @@ on:
schedule:
- cron: "0 3 * * *" # 毎日の正午に実行 ( 12+JST = 3+UTC )
workflow_dispatch:
branches:
- main

defaults:
run:
Expand All @@ -19,7 +17,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
- name: Scan dependencies
run: |
npm install -g npm
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/nodejs-deps-update.yml
Expand Up @@ -4,8 +4,6 @@ on:
schedule:
- cron: '0 3 * * 3' # 毎週水曜日の正午に実行 ( 12+JST = 3+UTC )
workflow_dispatch:
branches:
- main

defaults:
run:
Expand All @@ -19,7 +17,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
- name: Update dependencies
id: vars
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'

- run: npm ci
- run: npm run vite-build
Expand Down

0 comments on commit fea4b21

Please sign in to comment.