Skip to content

Commit

Permalink
chore: update node version in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ASaiAnudeep committed Apr 30, 2024
1 parent 1e42a64 commit 5206597
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ on:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
branches:
- master
push:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
branches:
- master

jobs:
build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
branches:
- master

jobs:
Expand All @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
node-version: '20'
- run: npm install
- name: Code Coverage
uses: paambaati/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm test
Expand Down

0 comments on commit 5206597

Please sign in to comment.