Skip to content

fix(recorder): restore v0.1 flow — fetch body in loadingFinished, flu… #33

fix(recorder): restore v0.1 flow — fetch body in loadingFinished, flu…

fix(recorder): restore v0.1 flow — fetch body in loadingFinished, flu… #33

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test
- name: Build
run: npm run build
- name: Package extension zip
run: npm run package
- name: Upload dist.zip artifact
uses: actions/upload-artifact@v4
with:
name: dist-zip
path: dist.zip