Skip to content

test(e2e): post-deploy MVP smoke suite (#126) #104

test(e2e): post-deploy MVP smoke suite (#126)

test(e2e): post-deploy MVP smoke suite (#126) #104

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: |
mkdir -p "$(pnpm bin)"
printf '#!/bin/sh\nexit 0' > "$(pnpm bin)/lefthook"
chmod +x "$(pnpm bin)/lefthook"
pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Typecheck
run: pnpm typecheck
continue-on-error: true
- name: Test
run: pnpm test
continue-on-error: true