working on finishing deposits #797
Workflow file for this run
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: Frontend | |
on: push | |
jobs: | |
build-frontend: | |
name: Build frontend | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
cd frontend | |
yarn install --check-files | |
- name: Run checks | |
run: | | |
cd frontend | |
yarn run check | |
- name: Check prettier | |
run: | | |
cd frontend | |
yarn run prettier-check | |
- name: Check lints | |
run: | | |
cd frontend | |
yarn run lint | |
- name: Check build | |
run: | | |
cd frontend | |
yarn run build |