Skip to content

Prepare for release of 2.0 (#91) #40

Prepare for release of 2.0 (#91)

Prepare for release of 2.0 (#91) #40

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@v2.4.0
with:
version: latest
run_install: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3.4.1
with:
node-version: 18.x
cache: "pnpm"
- name: Build the extension
run: pnpm build
- name: Run tests
run: cd test && pnpm test