chore: this is 3.2.1 #73
Workflow file for this run
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: "CI workflow" | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install pnpm | |
| shell: bash | |
| run: npm install -g pnpm | |
| - name: Install package dependencies | |
| run: pnpm install | |
| - name: Check source code format | |
| run: pnpm run fmt | |
| - name: Validate Radon assets | |
| run: pnpm run witsdk radon check --version | |