chore(deps): update dependency @types/node to v24.12.4 #2516
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: Build | |
| on: | |
| push: | |
| branches: ["master", "main"] | |
| pull_request: | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: "package.json" | |
| cache: "yarn" | |
| - name: Run Cloudflare build | |
| run: | | |
| yarn install | |
| yarn run cloudflare-build | |
| - name: Upload output files | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: Output Files | |
| path: out/* |