Skip to content

Commit

Permalink
Update pipeline.yml to nodejs 16
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshimkus authored Oct 15, 2024
1 parent 91aa6ea commit 5756c7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
Expand All @@ -22,7 +22,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
node-version: [12.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish --access public
Expand Down

0 comments on commit 5756c7a

Please sign in to comment.