This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Validation Pipeline | |
concurrency: | |
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
permissions: | |
actions: write | |
contents: read | |
# Required to put a comment into the pull-request | |
pull-requests: write | |
jobs: | |
lint: | |
name: ⬣ Biome lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
- name: Run Biome | |
run: biome ci . | |
typecheck: | |
name: 🔎 Type check | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: 🔎 Type check | |
run: npm run typecheck | |
vitest: | |
name: ⚡ Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: Install dotenv cli | |
run: npm install -g dotenv-cli | |
- name: ⚡ Run vitest | |
run: npm run test:cov | |
# - name: "Report Coverage" | |
# Only works if you set `reportOnFailure: true` in your vite config as specified above | |
# if: always() | |
# uses: davelosert/vitest-coverage-report-action@v2 | |
deploy-preview: | |
name: "🚀 Deploy Docs" | |
needs: [lint, typecheck, vitest] | |
uses: forge42dev/workflows/.github/workflows/deploy-to-fly.yaml@monorepo-matrix | |
with: | |
workspace_name: docs | |
set_cwd_to_workspace: true | |
github_environment: "docs-previev" | |
secrets: | |
fly_api_token: ${{ secrets.FLY_API_TOKEN }} |