5a208feec0
* Delete npm from the project part 1 * Fix frontend test and change readme.md * Try to fix frontend test * Try to fix workflow frontend * Add yarn to .gitignore * Try to fix backend test. * Try to fix backend * Update README.md * Delete cache from project * Add cache folder to .gitignore * Fix backdend and frontend test * Update License Date * Remove yarn from README.md * Add special workflow requirements.txt * Change Location requirements.txt * Delete pytz entry * Delete pytest-django entry * Add pytest-django to requirements.txt
16 lines
No EOL
382 B
YAML
16 lines
No EOL
382 B
YAML
name: Frontend
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Install deps
|
|
working-directory: ./frontend
|
|
run: npm install --immutable
|
|
- name: Build app
|
|
working-directory: ./frontend
|
|
run: npm run build |