Skip to content

fix: Default puppeteer-config to not set executable path unless OS is… #335

fix: Default puppeteer-config to not set executable path unless OS is…

fix: Default puppeteer-config to not set executable path unless OS is… #335

Workflow file for this run

name: smoke test
on:
push:
branches: [main]
pull_request:
branches: [main, alpha, beta]
jobs:
smoke-test:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
node: ['16', '18']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: install
run: |
npm i
- name: build
run: |
npm run build
- name: test
run: |
npm run test