chore(deps): Bump @grpc/grpc-js from 1.10.7 to 1.10.9 in /frontend #14
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: PR pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Don't mess with line endings | |
run: | | |
git config --global core.autocrlf false | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ubuntu-latest-3.12-pip-${{ hashFiles('requirements.txt') }} | |
restore-keys: | | |
ubuntu-latest-3.9-pip- | |
- name: Install build tools | |
run: | | |
make develop | |
- name: Setup pre-commit | |
run: | | |
make pre-commit | |
- name: Run md document formatting (mdformat) | |
run: | | |
make mdformat | |
- name: Run code formatting (yapf) | |
run: | | |
make code-format | |
- name: Run code linting (flake8) | |
run: | | |
make code-lint | |
- name: Run code typing check (mypy) | |
continue-on-error: true | |
run: | | |
make code-typing |