8000 chore: fix CI to use newer npm on node 14 by aabmass · Pull Request #298 · google/pprof-nodejs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: fix CI to use newer npm on node 14 #298

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
with:
node-version: ${{ matrix.node }}
- run: node --version
# Upgrade npm to newest supported version so it understands lockfile v3
- run: npm install -g npm@9.9.3
if: matrix.node == 14
- run: npm install
- run: npm test
- name: coverage
4CD5 Expand All @@ -30,5 +33,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 14
# Upgrade npm to newest supported version so it understands lockfile v3
- run: npm install -g npm@9.9.3
- run: npm install
- run: npm run lint
0