chore(deps): update dependency @types/node to v24.10.10 #278
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: Generate | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: publish | |
| env: | |
| # renovate: datasource=node-version depName=node versioning=node | |
| NODE_VERSION: "24.13.0" | |
| jobs: | |
| publish: | |
| strategy: | |
| matrix: | |
| branch: | |
| - master | |
| - beta | |
| - alpha | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Select Node.js version | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Load cached dependencies | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node{{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: ${{ runner.os }}-node${{ env.NODE_VERSION }} | |
| - name: Generate Data | |
| run: | | |
| git clone --branch "${{ matrix.branch != 'master' && 'dev/' || '' }}${{ matrix.branch }}" --depth 1 --single-branch "https://github.com/nuclear-unicorn/kittensgame.git" | |
| rm -rf "lib/${{ matrix.branch }}" | |
| make "lib/${{ matrix.branch }}" | |
| make pretty | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 | |
| with: | |
| commit-message: "feat: Update metadata snapshots" | |
| branch: feat/metadata/${{ matrix.branch }} | |
| title: Metadata Update for ${{ matrix.branch }} | |
| assignees: oliversalzburg | |
| sign-commits: true |