Skip to content

Bump @types/chrome from 0.0.268 to 0.0.287 (#177) #692

Bump @types/chrome from 0.0.268 to 0.0.287 (#177)

Bump @types/chrome from 0.0.268 to 0.0.287 (#177) #692

Workflow file for this run

name: "CI"
on:
push:
schedule:
- cron: "0 0 * * MON-FRI"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
- name: Install dependencies
run: |
pnpm install
npx puppeteer browsers install chrome
cd test && pnpm install
- name: Build the extension
run: pnpm build
- name: Run tests
run: cd test && pnpm test