Skip to content

Commit

Permalink
升级node
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoubichuan committed Dec 9, 2023
1 parent f900365 commit 8ead40e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: "14.18.0"
node-version: "16.15.0"
- name: Install npm dependencies
run: npm install
- name: Run build task
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: "14.18.0"
node-version: "16.15.0"
# 拉取代码
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: "14.18.0"
node-version: "16.15.0"
- name: 安装yarn
run: yarn
- name: 安装依赖
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: "14.18.0"
node-version: "16.15.0"
- name: Install npm dependencies
run: npm install
- name: Run build task
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: "14.18.0"
node-version: "16.15.0"
- name: Install npm dependencies
run: npm install
- name: Run build task
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#设置构建的基础镜像
FROM node:14.18.0
FROM node:16.15.0
RUN mkdir -p /project/
WORKDIR /project/
COPY package*.json /project/
Expand Down

0 comments on commit 8ead40e

Please sign in to comment.