Skip to content

Commit

Permalink
ci: setup latest Node.js in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
threeal committed Feb 10, 2024
1 parent 87a432a commit 3be4f86
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: latest

- name: Cache Dependencies
id: cache-npm
uses: actions/[email protected]
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: latest

- name: Cache Dependencies
id: cache-npm
uses: actions/[email protected]
Expand All @@ -37,6 +42,11 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: latest

- name: Cache dependencies
id: cache-npm
uses: actions/[email protected]
Expand Down

0 comments on commit 3be4f86

Please sign in to comment.