Skip to content

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
jobs:
main:
name: Continuous Integration
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
- name: Install Dependencies
run: |
pnpm install --frozen-lockfile
- name: Lint and Typecheck
run: |
pnpm run typecheck
pnpm run lint
- name: Build
run: |
pnpm run build