Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,13 @@ jobs:
- run: deno task test:cfworkers
working-directory: ${{ github.workspace }}/packages/fedify/

test-temporal-polyfill:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-mise
- run: mise run --skip-deps test:temporal-polyfill
Comment thread
coderabbitai[bot] marked this conversation as resolved.

lint:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -328,7 +335,7 @@ jobs:

build-cli:
if: github.event_name == 'push'
needs: [test, test-node, test-bun, test-cfworkers, lint, release-test, determine-version]
needs: [test, test-node, test-bun, test-cfworkers, test-temporal-polyfill, lint, release-test, determine-version]
runs-on: namespace-profile-linux-amd64-32gb
steps:
- uses: actions/checkout@v6
Expand All @@ -348,7 +355,7 @@ jobs:

build-packages:
if: github.event_name == 'push'
needs: [test, test-node, test-bun, test-cfworkers, lint, release-test, determine-version]
needs: [test, test-node, test-bun, test-cfworkers, test-temporal-polyfill, lint, release-test, determine-version]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -372,7 +379,7 @@ jobs:

publish-jsr:
if: github.event_name == 'push'
needs: [test, test-node, test-bun, test-cfworkers, lint, release-test, determine-version]
needs: [test, test-node, test-bun, test-cfworkers, test-temporal-polyfill, lint, release-test, determine-version]
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"@std/testing": "jsr:@std/testing@^0.224.0",
"@std/yaml": "jsr:@std/yaml@^1.0.8",
"@types/emscripten": "npm:@types/emscripten@^1.41.1",
"@types/node": "npm:@types/node@^22.16.0",
"@types/node": "npm:@types/node@^24.12.2",
"amqplib": "npm:amqplib@^0.10.9",
"asn1js": "npm:asn1js@^3.0.10",
"astro": "npm:astro@^7.0.0",
Expand Down
26 changes: 4 additions & 22 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"scripts": {
"prepare": "pnpm -r run build:self"
},
"devDependencies": {
"@types/node": "catalog:",
"typescript": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
Expand Down
2 changes: 1 addition & 1 deletion packages/fedify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
"@fedify/vocab-tools": "workspace:^",
"@std/assert": "jsr:^0.226.0",
"@std/path": "catalog:",
"@types/node": "^24.2.1",
"@types/node": "catalog:",
"fetch-mock": "catalog:",
"miniflare": "^4.20250523.0",
"tsdown": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion packages/vocab-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
},
"license": "MIT",
"devDependencies": {
"@types/node": "^24.2.1",
"@types/node": "catalog:",
"fetch-mock": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
Expand Down
2 changes: 1 addition & 1 deletion packages/webfinger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"license": "MIT",
"devDependencies": {
"@fedify/fixture": "workspace:*",
"@types/node": "^24.2.1",
"@types/node": "catalog:",
"fetch-mock": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
Expand Down
Loading
Loading