Skip to content

Commit 3dde8e6

Browse files
committed
Update workflows
1 parent d2447da commit 3dde8e6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
deploy:
10-
name: Test and deploy
10+
name: Deploy
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Git checkout
@@ -16,6 +16,8 @@ jobs:
1616
persist-credentials: false
1717
- name: Install Node
1818
uses: actions/setup-node@v1
19+
with:
20+
node-version: 14
1921
- name: Install PNPM
2022
run: npm install -g pnpm
2123
- name: Install dependencies

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
uses: actions/checkout@v2
1212
- name: Install Node
1313
uses: actions/setup-node@v1
14+
with:
15+
node-version: 14
1416
- name: Install PNPM
1517
run: npm install -g pnpm
1618
- name: Install dependencies

0 commit comments

Comments
 (0)