fix(mapswipe): Update project status #361
This file contains hidden or 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 | |
| env: | |
| PIPELINE_TYPE: ci | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18.x' | |
| cache: 'yarn' | |
| # Pre-commit | |
| - uses: actions/setup-python@v5 | |
| - name: Install pre-commit | |
| run: pip install pre-commit | |
| - name: Install dependencies | |
| run: yarn install --prefer-online | |
| - name: Generate typings | |
| run: yarn generate:type | |
| - name: Prefetch dummy data | |
| run: yarn fetch-data | |
| - name: Check | |
| run: pre-commit run -vvv --all-files | |
| # FIXME: Check build after creating fixtures |