Skip to content

Bump ws from 7.5.9 to 7.5.10 in /website #27

Bump ws from 7.5.9 to 7.5.10 in /website

Bump ws from 7.5.9 to 7.5.10 in /website #27

Workflow file for this run

name: website
on:
push
defaults:
run:
working-directory: website
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: bahmutov/npm-install@v1
with:
working-directory: website
- run: npm run typecheck
deploy:
if: ${{ github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
environment: production
needs: typecheck
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}