Skip to content

Commit

Permalink
Update node and action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
abigailalexander committed Sep 12, 2024
1 parent d5567d4 commit a5ee3ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v4.0.3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/npm-publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4.1.7
- uses: actions/setup-node@v4.0.3
with:
node-version: 16
node-version: 22
- run: npm ci
- run: npm test

Expand All @@ -26,10 +26,10 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4.1.7
- uses: actions/setup-node@v4.0.3
with:
node-version: 16
node-version: 22
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm run rollup
Expand Down

0 comments on commit a5ee3ef

Please sign in to comment.