chore(deps): update dependency @types/node to v22.15.18 #87
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: "23.11.0" | |
| jobs: | |
| publish: | |
| strategy: | |
| matrix: | |
| branch: | |
| - master | |
| - dev/beta | |
| - dev/alpha | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| persist-credentials: false | |
| - name: Select Node.js version | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Enable Corepack | |
| run: | | |
| corepack enable | |
| yarn config set enableGlobalCache false | |
| - name: Load cached dependencies | |
| uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4 | |
| with: | |
| path: .yarn/cache | |
| key: ${{ runner.os }}-node${{ env.NODE_VERSION }}-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node${{ env.NODE_VERSION }} | |
| - name: Generate Data | |
| run: | | |
| git clone --branch "${{ matrix.branch }}" --depth 1 --single-branch "https://github.com/nuclear-unicorn/kittensgame.git" | |
| rm -rf lib | |
| make lib | |
| make pretty | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| commit-message: "feat: Update metadata snapshots" | |
| branch: feat/metadata/${{ matrix.branch }} | |
| title: Metadata Update for ${{ matrix.branch }} | |
| assignees: oliversalzburg | |
| sign-commits: true |