Skip to content
This repository was archived by the owner on Jun 3, 2023. It is now read-only.

Commit 18ebff6

Browse files
author
Victor Navarro
committed
ci: setup node before running action
1 parent f00f12d commit 18ebff6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/node-ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ jobs:
66
node-ci:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- name: Setup Node
12+
uses: actions/setup-node@v1
1013
- name: Install Dependencies
1114
run: yarn install
1215
- name: Run Action

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ jobs:
77
publish:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Setup Node
13+
uses: actions/setup-node@v1
1114
- name: Install Dependencies
1215
run: yarn install
1316
- name: Run Action

0 commit comments

Comments
 (0)