Skip to content

Commit

Permalink
Merge pull request #152 from ainize-team/fix/yoojin/create_account
Browse files Browse the repository at this point in the history
Fix node version on github action
  • Loading branch information
yoojinko authored Dec 18, 2024
2 parents 941ea68 + c1a165b commit faa1798
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-node@v3
with:
node-version: 16 # typedoc require node version >= 14.14
node-version: 18 # typedoc require node version >= 14.14
- name: Build Docs
run: yarn && yarn docs
- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16 ]
node: [ 18 ]
name: Run Test on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_test_when_merged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16 ]
node: [ 18 ]
name: Run Test on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn
Expand Down

0 comments on commit faa1798

Please sign in to comment.