Skip to content

chore(deps): bump earcut and @types/earcut #68

chore(deps): bump earcut and @types/earcut

chore(deps): bump earcut and @types/earcut #68

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: '22'
jobs:
verify:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts --no-audit --fund=false
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build bundles
run: npm run build
- name: Build declarations
run: npm run build:declarations
- name: Verify package entry exports
run: npm run verify:exports
- name: Package dry run
run: npm pack --dry-run