36 lines
626 B
YAML
36 lines
626 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 8
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install
|
|
|
|
- name: Type check
|
|
run: pnpm run typecheck
|
|
|
|
- name: Lint and format check
|
|
run: pnpm run check
|
|
|
|
- name: Build check
|
|
run: pnpm run build
|