Skip to content

Commit

Permalink
ci(github actions): update workflow plugins to fix deployment steps r…
Browse files Browse the repository at this point in the history
…unning on nodejs 18

#57
  • Loading branch information
george43g committed May 8, 2024
1 parent fdfbe07 commit e96f10d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
node: [ 14, 16, 18 ]
name: Node ${{ matrix.node }} test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
Expand All @@ -35,13 +35,13 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
cache: 'npm'
- run: npm ci
- run: pwd
- run: rm -rf ../../_temp/.npmrc
- run: npm run release
- run: npm run release

0 comments on commit e96f10d

Please sign in to comment.