Skip to content

chore; Apply some linting recommendations #93

chore; Apply some linting recommendations

chore; Apply some linting recommendations #93

Workflow file for this run

name: Publish app to GitHub pages
on:
push:
branches: ["master"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: ./scripts/cities.sh
- run: npm install
- run: npm run build-only -- --mode dev
- uses: actions/[email protected]
with:
path: dist
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
steps:
- name: Publish app
uses: actions/[email protected]