CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s
- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs - Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock - Rewrite remaining product references to Moeka
40 lines
963 B
YAML
40 lines
963 B
YAML
name: autofix.ci
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
push:
|
|
branches: [crowdin]
|
|
|
|
jobs:
|
|
autofix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
# NOTICE:
|
|
# Pin Node.js because 26.8.0 reports 26.8.0-alpha.0.0.0.
|
|
# sharp 0.29.3 rejects this prerelease version during bun install.
|
|
# Source: https://github.com/nodejs/node/blob/v26.8.0/src/node_version.h
|
|
# Remove this pin when Node.js 26 reports a stable version.
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 26.7.0
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: 1.4.2
|
|
|
|
- run: bun install
|
|
- run: bun prune && bun dedupe
|
|
- run: bun run lint:fix
|
|
|
|
# - name: AutoCorrect
|
|
# uses: huacnlee/autocorrect-action@main
|
|
# with:
|
|
# args: --fix
|
|
|
|
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 # v1.3.3
|