Skip to content

feat: add conditional logic to reduce survey questions #5

feat: add conditional logic to reduce survey questions

feat: add conditional logic to reduce survey questions #5

Workflow file for this run

name: CI Check
on:
pull_request:
push:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 📦 Setup Node + PNPM + install deps
uses: ./.github/actions/setup-node-pnpm-install
- name: "Astro Check"
run: pnpm run astro check
- name: "Run ESLint"
run: pnpm run lint:ci
- name: "Run Tests"
run: pnpm run test:ci
- name: "Generate Coverage Report"
# Set if: always() to also generate the report if tests are failing
# Only works if you set `reportOnFailure: true` in your vite config as specified above
if: always()
uses: davelosert/vitest-coverage-report-action@v2