[DEPS]: Bump eslint-plugin-promise from 6.6.0 to 7.2.0 #548
Workflow file for this run
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: Testing and Deployment | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Node Modules | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ hashFiles('package-lock.json') }} | |
- name: Installing | |
run: ./bin/install | |
- name: Static analysis | |
run: ./bin/npm run lint | |
- name: Type-Testing | |
run: ./bin/exec npx nuxi typecheck | |
deploy: | |
name: Deploy app | |
needs: lint | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Node Modules | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ hashFiles('package-lock.json') }} | |
- name: Setup Fly | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Fly Deploy | |
run: flyctl deploy --remote-only --build-secret GOOGLE_MAPS_API_KEY="$GOOGLE_MAPS_API_KEY" | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }} |