Update dependency c8 to v8 #1097
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: | |
- pull_request | |
- push | |
jobs: | |
small: | |
name: test / ${{matrix.os}} / ${{matrix.node}} | |
runs-on: ${{matrix.os}} | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{matrix.node}} | |
cache: npm | |
- run: npm ci | |
- run: npm run test-api | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- windows-latest | |
node: | |
- node | |
include: | |
- os: ubuntu-latest | |
node: lts/gallium | |
full: | |
name: full build | |
runs-on: ubuntu-latest | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: node | |
cache: npm | |
- run: npm ci | |
- run: npm test | |
- uses: codecov/codecov-action@v3 |