Skip to content

chore(deps-dev): bump cspell from 8.6.1 to 8.8.0 #17

chore(deps-dev): bump cspell from 8.6.1 to 8.8.0

chore(deps-dev): bump cspell from 8.6.1 to 8.8.0 #17

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Check Format/Linting
run: pnpm run check:ci
- name: Build
run: pnpm run build
- name: Test
run: pnpm test
- name: Check size
run: pnpm run size