27 lines
537 B
YAML
27 lines
537 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: pnpm/action-setup@v4
|
|
- run: pnpm install --no-frozen-lockfile
|
|
- run: pnpm --version
|
|
- run: pnpm check
|
|
- run: pnpm build
|
|
- run: pnpm test
|
|
env:
|
|
FIRECRAWL_API_KEY: test
|
|
LINEAR_API_KEY: test
|