Bump cross-spawn from 7.0.3 to 7.0.6 in /frontend #171
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: Normal CI | |
on: | |
push: | |
jobs: | |
run-test: | |
name: Run Test on Scratch | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Install yarn packages | |
working-directory: ./frontend | |
run: yarn install --frozen-lockfile | |
- name: Install pip packages | |
working-directory: ./backend | |
run: python -m pip install -r requirements.txt | |
#- name: pre commit run | |
# uses: pre-commit/[email protected] | |
- name: test frontend | |
working-directory: ./frontend | |
run: CI=true yarn test | |
- name: test backend | |
working-directory: ./backend | |
run: pytest |