File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747
4848 - name : Run Test
4949 run : pnpm run test
50+
51+ check :
52+ name : Check
53+ runs-on : ubuntu-latest
54+
55+ steps :
56+ - name : Checkout
57+ uses : actions/checkout@v4
58+
59+ - name : Install Pnpm
60+ run : |
61+ npm install -g corepack@latest
62+ corepack enable
63+
64+ - name : Setup Node.js
65+ uses : actions/setup-node@v4
66+ with :
67+ node-version : ${{ matrix.node }}
68+ cache : " pnpm"
69+
70+ - name : Install Dependencies
71+ run : pnpm install
72+
73+ - name : Prettier
74+ run : pnpm run prettier:ci
Original file line number Diff line number Diff line change 2525 "lint" : " biome check ." ,
2626 "lint:write" : " biome check . --write" ,
2727 "format" : " prettier --write ." ,
28+ "prettier:ci" : " prettier --check ." ,
2829 "test:install" : " cross-env ./node_modules/.bin/puppeteer browsers install chrome" ,
2930 "test" : " pnpm run test:install && pnpm run build && cross-env NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ./node_modules/jest-cli/bin/jest --colors" ,
3031 "release" : " node ./scripts/release.mjs"
You can’t perform that action at this time.
0 commit comments