Skip to content
Open
Show file tree
Hide file tree
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
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
on:
push:
branches: [main]
pull_request:
name: ci
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node: [18, 20]
include:
# use latest npm by default
- npm-version: latest
- npm-version: 10.9.2
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
Expand All @@ -20,5 +19,5 @@ jobs:
- run: node --version
- name: Upgrade to latest npm to support lockfile v2
run: npm install -g npm@${{ matrix.npm-version }}
- run: npm install && npm install
- run: npm run test
- run: npm ci --verbose && npm ci --verbose
- run: npm run test
Loading
Loading