set deployment region #10
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 | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lint: | |
name: ⬣ ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
cache-dependency-path: ./package.json | |
node-version: 18 | |
- 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@v3 | |
with: | |
cache: npm | |
cache-dependency-path: ./package.json | |
node-version: 18 | |
- 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@v3 | |
with: | |
cache: npm | |
cache-dependency-path: ./package.json | |
node-version: 18 | |
- 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] | |
# only deploy main/dev branch on pushes | |
if: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: π Read app name | |
uses: SebRollen/toml-action@v1.0.2 | |
id: app_name | |
with: | |
file: fly.toml | |
field: app | |
- name: π Setup Fly | |
uses: superfly/flyctl-actions/setup-flyctl@v1.4 | |
- name: π Deploy Staging | |
if: ${{ github.ref == 'refs/heads/dev' }} | |
run: flyctl deploy --remote-only --region waw --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}-staging | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
- name: π Deploy Production | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: flyctl deploy --remote-only --region waw --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }} | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |