Skip to content

feat(gacha): add provably-fair gacha (pack-pull) example #398

feat(gacha): add provably-fair gacha (pack-pull) example

feat(gacha): add provably-fair gacha (pack-pull) example #398

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env:
# See https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
prettier:
name: Prettier check
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
# --frozen-lockfile: fail if pnpm-lock.yaml is out of date
# --ignore-workspace: only install root deps, not all 94 subprojects
- run: pnpm install --frozen-lockfile --ignore-workspace
- run: pnpm run check