Skip to content

chore(deps): switch xlsx (SheetJS) from npm registry to SheetJS CDN #32

chore(deps): switch xlsx (SheetJS) from npm registry to SheetJS CDN

chore(deps): switch xlsx (SheetJS) from npm registry to SheetJS CDN #32

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Audit for high-severity vulnerabilities
run: pnpm audit --audit-level high
continue-on-error: true