Skip to content

Commit

Permalink
chore: updating all workflows with node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
eikeland committed Jul 14, 2023
1 parent c9dacf3 commit de5e262
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prePublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2

Expand All @@ -21,7 +21,7 @@ jobs:

- name: npm install, update version.ts, run tsc
run: |
npm ci --legacy-peer-deps
npm ci
npm run update-templates
npm run build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2

Expand All @@ -21,7 +21,7 @@ jobs:
registry-url: https://registry.npmjs.org
- name: npm build and publish
run: |
npm ci --legacy-peer-deps
npm ci
npm run update-templates
npm run build
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
Expand Down

0 comments on commit de5e262

Please sign in to comment.