bolt.diy/.github/workflows/ci.yaml

28 lines
445 B
YAML
Raw Normal View History

2024-07-30 09:15:38 +00:00
name: CI/CD
2024-07-10 16:44:39 +00:00
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
2024-07-30 09:15:38 +00:00
- name: Setup and Build
uses: ./.github/actions/setup-and-build
2024-07-10 16:44:39 +00:00
- name: Run type check
run: pnpm run typecheck
2024-10-03 00:31:54 +00:00
# - name: Run ESLint
# run: pnpm run lint
2024-07-10 16:44:39 +00:00
- name: Run tests
run: pnpm run test