Skip to content

Commit

Permalink
Add a label to the CI step for Node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba committed Feb 10, 2021
1 parent 4ca1294 commit d911f1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "14.x"
- name: Build and test Javascript client
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
with:
# Tags are needed to compute the current version number
fetch-depth: 0
- uses: actions/setup-node@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "14.x"
- name: Publish Javascript client to npm
Expand Down

0 comments on commit d911f1c

Please sign in to comment.