Skip to content

build(deps-dev): bump prettier from 3.0.3 to 3.1.0 #338

build(deps-dev): bump prettier from 3.0.3 to 3.1.0

build(deps-dev): bump prettier from 3.0.3 to 3.1.0 #338

Workflow file for this run

---
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: '3.11'
- name: Install dependencies (Poetry)
run: poetry install --with=dev
- name: Install dependencies (Yarn)
run: yarn
- name: Install Shellcheck
run: sudo apt-get install -y shellcheck
- name: Lint with Shellcheck
run: yarn shellcheck
- name: Lint with mypy
run: yarn mypy
- name: Lint with pylint
run: yarn pylint
- name: Check spelling
run: yarn check-spelling
- name: Check formatting
run: yarn check-formatting
name: QA
'on':
pull_request:
branches:
- master
push:
branches:
- master