Skip to content

Bump @types/chrome from 0.0.273 to 0.0.279 #128

Bump @types/chrome from 0.0.273 to 0.0.279

Bump @types/chrome from 0.0.273 to 0.0.279 #128

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test -- --coverage
build:
strategy:
matrix:
target: [lib, e2e, doc]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build:lib
- run: npm run build:e2e
- run: npm run build:doc
coverage:
needs: [test, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test -- --coverage
- uses: codecov/codecov-action@v4
with:
file: ./coverage/coverage-final.json