Skip commit and release for now in sync workflow #85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Node.js CI (Prettier Check) | |
| on: | |
| push: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use PNPM Package Manager | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| - name: Node.js (26.x) | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "26.x" | |
| cache: "pnpm" | |
| - name: Check formatting via Prettier | |
| run: node --run prettier:check |