Updates for project Mapswipe Community Website and lanuage ne on branch main #144
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
env: | |
GITHUB_WORKFLOW: true | |
jobs: | |
ci: | |
name: Lint + Type Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
cache: 'yarn' | |
# Pre-commit | |
- uses: actions/setup-python@v4 | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Pull submodules (Server) | |
run: | |
git submodule update --init --recursive | |
- name: Install dependencies | |
run: yarn install --prefer-online | |
- name: Check | |
run: pre-commit run -vvv --all-files | |
# FIXME: Check build after creating fixtures |