Skip to content

Include oRPC in project inclusions #103

Include oRPC in project inclusions

Include oRPC in project inclusions #103

Workflow file for this run

name: Pipeline
on:
pull_request:
push:
branches: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check formatting with Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
submodules: "recursive"
- uses: oven-sh/setup-bun@v2
env:
HUSKY: 0
- run: bun install --frozen-lockfile
- uses: creyD/prettier_action@v4.3
with:
prettier_options: --check .
dry: true
only_changed: true