2022-05-14 10:22:06 +00:00
|
|
|
name: CI
|
2021-08-20 00:33:28 +00:00
|
|
|
|
2021-08-20 06:28:34 +00:00
|
|
|
on: [push, pull_request]
|
2021-08-20 00:33:28 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-08-20 06:28:34 +00:00
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-10-01 21:06:26 +00:00
|
|
|
node-version: 16
|
2022-05-14 10:22:06 +00:00
|
|
|
cache: "npm"
|
2021-08-27 16:48:24 +00:00
|
|
|
- run: npm ci
|
2021-08-20 06:28:34 +00:00
|
|
|
- run: npm run lint
|
|
|
|
|
2022-06-27 00:26:06 +00:00
|
|
|
typecheck:
|
|
|
|
name: Typecheck
|
2021-08-20 06:28:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-10-01 21:06:26 +00:00
|
|
|
node-version: 16
|
2021-08-27 16:48:24 +00:00
|
|
|
- run: npm ci
|
2022-06-27 00:26:06 +00:00
|
|
|
- run: npx tsc
|
2021-08-20 06:28:34 +00:00
|
|
|
|
2022-06-27 00:26:06 +00:00
|
|
|
deploy_development:
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
needs: [lint, typecheck]
|
|
|
|
name: Deploy development environment
|
2021-08-20 06:28:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-06-27 00:26:06 +00:00
|
|
|
- uses: superfly/flyctl-actions@master
|
|
|
|
env:
|
|
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
2021-08-20 06:28:34 +00:00
|
|
|
with:
|
2022-06-27 00:26:06 +00:00
|
|
|
args: "deploy --strategy rolling -c ./fly.dev.toml"
|
|
|
|
- uses: appleboy/discord-action@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
|
|
|
args: "https://dev.shellphone.app deployed with commit `${{ github.event.head_commit.message }}` (`${{ github.sha }}`) from branch `${{ github.ref }}`"
|
2021-08-20 06:28:34 +00:00
|
|
|
|
2022-06-27 00:26:06 +00:00
|
|
|
|
|
|
|
deploy_production:
|
|
|
|
if: github.ref == 'refs/heads/production'
|
|
|
|
needs: [lint, typecheck]
|
|
|
|
name: Deploy production environment
|
2021-08-20 00:33:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-08-27 14:32:34 +00:00
|
|
|
- uses: superfly/flyctl-actions@master
|
2021-08-20 00:33:28 +00:00
|
|
|
env:
|
2021-08-27 14:32:34 +00:00
|
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
|
|
with:
|
2022-05-14 10:22:06 +00:00
|
|
|
args: "deploy --strategy rolling"
|
2022-06-27 00:26:06 +00:00
|
|
|
- uses: appleboy/discord-action@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
|
|
|
args: "https://www.shellphone.app deployed with commit `${{ github.event.head_commit.message }}` (`${{ github.sha }}`) from branch `${{ github.ref }}`"
|