Deploy to prod #131
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 workflow | |
on: pull_request | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install front | |
run: | | |
cd front | |
npm install | |
- name: Install back | |
run: | | |
cd back | |
npm install | |
- name: Build | |
run: | | |
cd front | |
npm run build | |
- name: Tests front | |
run: | | |
cd front | |
npm test | |
- name: Tests back | |
run: | | |
cd back | |
npm test |