Skip to content

fix link to city page #292

fix link to city page

fix link to city page #292

Workflow file for this run

name: ci-tests
on: push
jobs:
test-front:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Go to frontend and run tests
run: cd frontend && npm i && npm run test
test-back:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Go to backend and run tests
run: cd backend && npm i && npm run test
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}