bolt.new/.github/workflows/ci.yaml

37 lines
610 B
YAML
Raw Normal View History

2024-07-10 16:44:39 +00:00
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
2024-07-19 09:04:26 +00:00
- uses: actions/setup-node@v4
with:
node-version: '20.15.1'
- uses: pnpm/action-setup@v4
with:
version: 9.4.0
run_install: false
2024-07-10 16:44:39 +00:00
- name: Install dependencies
run: pnpm install
- name: Run type check
run: pnpm run typecheck
- name: Run ESLint
run: pnpm run lint
- name: Run tests
run: pnpm run test