This repository was archived by the owner on Jun 17, 2026. It is now read-only.
chore: bump install-nix-action to v31.10.6 and channel to nixos-25.11
#1275
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: Check Formatting | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| - synchronize | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-24.04] | |
| node: [24] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install -g npm | |
| - run: npm install prettier pretty-quick | |
| - run: npm run prettier:check | |
| aggregate: | |
| name: format:required | |
| if: ${{ always() }} | |
| needs: [test] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: check e2e test result | |
| if: ${{ needs.test.result != 'success' }} | |
| run: exit 1 |