fix link to city page #292
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: 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 }} | |