Skip to content

Commit

Permalink
Use node current for checks in pipelines (#280)
Browse files Browse the repository at this point in the history
* ci: use latest node for publish checks pipeline

* ci: use latest node for test checks pipeline
  • Loading branch information
jkoenig134 authored Oct 8, 2024
1 parent 9f1182e commit f05bf71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: current
- run: bash .ci/runChecks.sh

publish-npm:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: current
- run: bash .ci/runChecks.sh

test:
Expand Down

0 comments on commit f05bf71

Please sign in to comment.