fix: remvoe Twitter from footer #80
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 | |
on: [push, pull_request] | |
jobs: | |
frontend: | |
name: Frontend | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Format | |
run: npm run format:check | |
- name: Lint | |
run: npm run lint | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Test | |
run: npm run test | |
- name: Run Build | |
run: npm run build | |
backend: | |
name: Backend | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: backend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install Poetry | |
run: curl -sSL https://install.python-poetry.org | python3 - | |
- name: Install Dependencies | |
run: poetry install | |
- name: Typecheck | |
working-directory: backend | |
run: poetry run mypy | |
- name: Format | |
working-directory: backend | |
run: | | |
poetry run black . --check | |
poetry run isort . --check | |
- name: Lint | |
working-directory: backend | |
run: | | |
poetry run ruff check . | |
- name: Test | |
working-directory: backend | |
run: | | |
poetry run coverage run -m unittest | |
poetry run coverage report --skip-empty |