Skip to content

feat(command): add dev command #35

feat(command): add dev command

feat(command): add dev command #35

Workflow file for this run

name: e2e
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: write
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
strategy:
matrix:
os:
- macos-15
- ubuntu-24.04
- windows-2025
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Setup Node.js
uses: actions/setup-node@v6.3.0
with:
node-version: "25.6.1"
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm run lint
- name: Check for type errors
run: npm run type
- name: Run tests
run: npm run test