Skip to content

Commit ac26cb9

Browse files
authored
Merge pull request #206 from girder/npm-build
Add a label to the CI step for Node setup
2 parents 4ca1294 + d911f1c commit ac26cb9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- uses: actions/checkout@v2
46-
- uses: actions/setup-node@v2
46+
- name: Set up Node.js
47+
uses: actions/setup-node@v2
4748
with:
4849
node-version: "14.x"
4950
- name: Build and test Javascript client

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242
with:
4343
# Tags are needed to compute the current version number
4444
fetch-depth: 0
45-
- uses: actions/setup-node@v2
45+
- name: Set up Node.js
46+
uses: actions/setup-node@v2
4647
with:
4748
node-version: "14.x"
4849
- name: Publish Javascript client to npm

0 commit comments

Comments
 (0)