Skip to content

Added 3 components(Drag and Drop, PasswordChecker, FixPassword) #139

Added 3 components(Drag and Drop, PasswordChecker, FixPassword)

Added 3 components(Drag and Drop, PasswordChecker, FixPassword) #139

name: check-build-and-formatting
on: pull_request
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
ref: ${{ github.head_ref }}
- name: prettier
run: |
cd frontend &&
npx prettier . --check
- name: black
run: |
cd backend &&
pip install black &&
black . --check
- name: frontend-build
run: |
cd frontend &&
npm install &&
CI=True npm run build