Skip to content

Commit

Permalink
build: github actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alisahinozcelik committed Nov 25, 2023
1 parent b8749fc commit 0781109
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: echo "PACKAGE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- run: npm install
- run: npm run lint
- run: npm run test:coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pushmaster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- run: npm install
- run: npm run test:coverage
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 0781109

Please sign in to comment.