Skip to content

Update packages and fix single fetch types #62

Update packages and fix single fetch types

Update packages and fix single fetch types #62

Workflow file for this run

name: πŸš€ Deploy (staging)
on:
push:
tags:
- stage
branches:
- dev
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: 20
- 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: 20
- 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: 20
- 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/[email protected]
- name: πŸš€ Deploy Staging
run: flyctl deploy --remote-only --config ./fly.staging.toml --build-arg COMMIT_SHA=${{ github.sha }} --strategy bluegreen
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}