Skip to content

CI

CI #144

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/[email protected]
with:
version: latest
run_install: true
- name: Use Node.js 18.x
uses: actions/[email protected]
with:
node-version: 18.x
cache: "pnpm"
- name: Build the extension
run: pnpm build
- name: Run tests
run: cd test && pnpm test