Skip to content

update package-lock.json #21

update package-lock.json

update package-lock.json #21

Workflow file for this run

name: deploy
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
setup:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: ▶️ Run setup script
run: npm run setup
- name: ʦ TypeScript
run: npm run typecheck
- name: ⬣ ESLint
run: npm run lint
deploy:
name: 🚀 Deploy
runs-on: ubuntu-latest
# only deploy main branch on pushes
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
# move Dockerfile to root
- name: 🚚 Move Files
run: |
mv ./scripts/fly.toml ./fly.toml
mv ./scripts/Dockerfile ./Dockerfile
mv ./scripts/.dockerignore ./.dockerignore
- name: 🚀 Deploy Production
uses: superfly/[email protected]
with:
args: 'deploy --remote-only'
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}