Skip to content

Commit

Permalink
run the pipeline using node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqiuw committed Sep 13, 2023
1 parent a8e6bff commit 6ff292e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
working-directory: "./client"
steps:
- uses: actions/checkout@v2
- name: Setup node 12
- name: Setup node 20
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 20.x
- run: npm ci
working-directory: ${{env.working-directory}}
- run: npm run build
Expand All @@ -29,10 +29,10 @@ jobs:
# working-directory: "./server"
# steps:
# - uses: actions/checkout@v2
# - name: Setup node 12
# - name: Setup node 20
# uses: actions/setup-node@v1
# with:
# node-version: 12.x
# node-version: 20.x
# - run: npm ci
# working-directory: ${{env.working-directory}}
# - run: npm run build
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
working-directory: "./client"
steps:
- uses: actions/checkout@v2
- name: Setup node 12
- name: Setup node 20
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 20.x
- run: npm ci
working-directory: ${{env.working-directory}}
- run: npm run build
Expand All @@ -32,10 +32,10 @@ jobs:
contents: read
steps:
- uses: actions/checkout@v2
- name: Setup node 12
- name: Setup node 20
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 20.x
registry-url: https://npm.pkg.github.com/
- run: npm ci
working-directory: ${{env.working-directory}}
Expand All @@ -54,10 +54,10 @@ jobs:
contents: read
steps:
- uses: actions/checkout@v2
- name: Setup node 12
- name: Setup node 20
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 20.x
registry-url: https://npm.pkg.github.com/
- run: npm ci
working-directory: ${{env.working-directory}}
Expand Down

0 comments on commit 6ff292e

Please sign in to comment.