Skip to content

Commit

Permalink
Updated Node versions in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dcyoung-dev committed Nov 5, 2023
1 parent 26bb833 commit d7b7bbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '20.x'
- run: npm ci
- run: npm run lint
- run: npm test
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '20.x'
- run: npm ci
- run: npm run lint
- run: npm test
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '20.x'
- run: npm ci
- run: npm pack
- name: Upload Artifact
Expand All @@ -52,7 +52,7 @@ jobs:
name: package
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '20.x'
registry-url: ${{ matrix.registry-url }}
- run: npm publish $(ls *.tgz)
env:
Expand Down

0 comments on commit d7b7bbb

Please sign in to comment.