Skip to content

deps(pip): bump the pip group in /docs with 1 update #307

deps(pip): bump the pip group in /docs with 1 update

deps(pip): bump the pip group in /docs with 1 update #307

Workflow file for this run

name: Check Formatting
on:
pull_request:
branches: [master]
types: [labeled, opened, synchronize, reopened]
env:
CARGO_TERM_COLOR: always
jobs:
rust:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
toolchain: nightly
- run: rustup component add rustfmt
- run: cargo fmt -- --check
javascript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Prettier
run: pnpm run check-format
- name: Lint
run: pnpm run lint