3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
13a251b101 fix: update ts-jest, types, and related deps for jest 30 compatibility
Co-authored-by: peter-evans <18365890+peter-evans@users.noreply.github.com>
2026-03-06 08:16:17 +00:00
copilot-swe-agent[bot]
451a18cb4a Initial plan 2026-03-06 08:12:25 +00:00
dependabot[bot]
5a9b73b301 build(deps): bump @tootallnate/once and jest
Removes [@tootallnate/once](https://github.com/TooTallNate/once). It's no longer used after updating ancestor dependency [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest). These dependencies need to be updated together.


Removes `@tootallnate/once`

Updates `jest` from 27.5.1 to 30.2.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.2.0/packages/jest)

---
updated-dependencies:
- dependency-name: "@tootallnate/once"
  dependency-version: 
  dependency-type: indirect
- dependency-name: jest
  dependency-version: 30.2.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-04 21:31:55 +00:00
5 changed files with 377 additions and 422 deletions

View File

@@ -19,7 +19,7 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v7 - uses: actions/checkout@v6
- uses: actions/setup-node@v6 - uses: actions/setup-node@v6
with: with:
node-version-file: package.json node-version-file: package.json
@@ -45,7 +45,7 @@ jobs:
matrix: matrix:
target: [built, committed] target: [built, committed]
steps: steps:
- uses: actions/checkout@v7 - uses: actions/checkout@v6
- if: matrix.target == 'built' || github.event_name == 'pull_request' - if: matrix.target == 'built' || github.event_name == 'pull_request'
uses: actions/download-artifact@v8 uses: actions/download-artifact@v8
with: with:
@@ -73,7 +73,7 @@ jobs:
needs: [test] needs: [test]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v7 - uses: actions/checkout@v6
- uses: actions/download-artifact@v8 - uses: actions/download-artifact@v8
with: with:
name: dist name: dist

View File

@@ -11,7 +11,7 @@ jobs:
PAYLOAD_CONTEXT: ${{ toJson(github.event.client_payload) }} PAYLOAD_CONTEXT: ${{ toJson(github.event.client_payload) }}
run: echo "$PAYLOAD_CONTEXT" run: echo "$PAYLOAD_CONTEXT"
- uses: actions/checkout@v7 - uses: actions/checkout@v6
if: github.event.client_payload.ref != '' if: github.event.client_payload.ref != ''
with: with:
ref: ${{ github.event.client_payload.ref }} ref: ${{ github.event.client_payload.ref }}

View File

@@ -17,7 +17,7 @@ jobs:
tag: tag:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v7 - uses: actions/checkout@v6
with: with:
token: ${{ secrets.ACTIONS_BOT_TOKEN }} token: ${{ secrets.ACTIONS_BOT_TOKEN }}
fetch-depth: 0 fetch-depth: 0

779
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -42,12 +42,12 @@
"eslint": "^8.57.1", "eslint": "^8.57.1",
"eslint-plugin-github": "^4.10.2", "eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^27.9.0", "eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.5.6", "eslint-plugin-prettier": "^5.5.5",
"jest": "^30.4.2", "jest": "^30.2.0",
"jest-circus": "^30.2.0", "jest-circus": "^30.2.0",
"js-yaml": "^4.2.0", "js-yaml": "^4.1.1",
"prettier": "^3.8.3", "prettier": "^3.8.1",
"ts-jest": "^29.4.11", "ts-jest": "^29.4.6",
"typescript": "^5.4.5" "typescript": "^5.4.5"
} }
} }