Skip to content

Commit

Permalink
use latest npm
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceharrison1984 committed Jul 5, 2023
1 parent 2147223 commit c7c5c87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
if: github.ref != 'refs/heads/main' && github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.10.0
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '16.10.0'
node-version: 16.x
cache: 'npm'
- name: Update NPM
run: npm install -g npm
- name: NPM Install
run: npm ci
- name: Test
run: npm run test
run: npm run test:ci
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.10.0
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '16.10.0'
node-version: 16.x
cache: 'npm'
- name: Update NPM
run: npm install -g npm
Expand All @@ -55,7 +55,7 @@ jobs:
- uses: ArtiomTr/[email protected]
id: coverage
with:
test-script: npm run test
test-script: npm run test:ci
output: report-markdown
working-directory: ./packages/Schedulely
- uses: marocchino/sticky-pull-request-comment@v2
Expand Down

0 comments on commit c7c5c87

Please sign in to comment.