Skip to content

Bump shell-quote and concurrently #102

Bump shell-quote and concurrently

Bump shell-quote and concurrently #102

Workflow file for this run

name: Build CI
on:
push:
branches: master
pull_request:
jobs:
build:
name: Build
permissions:
contents: read
checks: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
- name: Install
run: npm install
- name: Type check
run: npx tsc --noEmit
- name: Format check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test
run: npm run coverage-ci