Improve docs navigation (#157) #216
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: π Deploy (production) | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "README.md" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
jobs: | |
lint: | |
name: ⬣ ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
cache-dependency-path: ./package-lock.json | |
node-version: 22 | |
- name: π₯ Install deps | |
run: npm install | |
- name: π¬ Lint | |
run: npm run lint | |
typecheck: | |
name: Κ¦ TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
cache-dependency-path: ./package-lock.json | |
node-version: 22 | |
- name: π₯ Install deps | |
run: npm install | |
- name: π Type check | |
run: npm run typecheck --if-present | |
vitest: | |
name: β‘ Vitest | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
cache-dependency-path: ./package-lock.json | |
node-version: 22 | |
- name: π₯ Install deps | |
run: npm install | |
- name: β‘ Run vitest | |
run: npm run test -- --coverage | |
deploy: | |
name: π Deploy | |
runs-on: ubuntu-latest | |
needs: [lint, typecheck, vitest] | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: π Setup Fly | |
uses: superfly/flyctl-actions/setup-flyctl@1.5 | |
- name: π Deploy Production | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: flyctl deploy --remote-only --config ./fly.production.toml --build-arg COMMIT_SHA=${{ github.sha }} | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
purge: | |
name: π§Ή Purge CDN | |
runs-on: ubuntu-latest | |
needs: [deploy] | |
steps: | |
- name: π§Ή Purge All | |
run: | | |
curl -D - -X POST --location "https://api.fastly.com/service/${{ secrets.FASTLY_SERVICE_ID }}/purge_all" -H "Accept: application/json" -H "Fastly-Key: ${{ secrets.FASTLY_API_TOKEN }}" -H "fastly-soft-purge: 1" |