Skip to content

chore(deps): bump the workerd-and-workers-types group with 2 updates #13454

chore(deps): bump the workerd-and-workers-types group with 2 updates

chore(deps): bump the workerd-and-workers-types group with 2 updates #13454

Workflow file for this run

name: CI
on:
merge_group:
pull_request:
types: [synchronize, opened, reopened, labeled, unlabeled]
jobs:
add-to-project:
if: github.head_ref != 'changeset-release/main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-add-pr
cancel-in-progress: true
timeout-minutes: 30
name: Add PR to project
runs-on: ubuntu-latest
steps:
- run: curl -X POST https://devprod-status-bot.devprod.workers.dev/pr-project/workers-sdk/${{ github.event.number }}
check-vp:
if: github.head_ref == 'changeset-release/main' || contains(github.event.*.labels.*.name, 'every-os' )
timeout-minutes: 30
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-checks
cancel-in-progress: true
name: "Checks"
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04-arm, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
with:
turbo-api: ${{ secrets.TURBO_API }}
turbo-team: ${{ secrets.TURBO_TEAM }}
turbo-token: ${{ secrets.TURBO_TOKEN }}
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
- name: Check for errors
run: pnpm run check --summarize
env:
CI_OS: ${{ runner.os }}
NODE_OPTIONS: "--max_old_space_size=8192"
- name: Check the changesets
run: node -r esbuild-register tools/deployments/validate-changesets.ts
check:
timeout-minutes: 30
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-pr-checks
cancel-in-progress: true
name: "Checks"
runs-on: macos-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
with:
turbo-api: ${{ secrets.TURBO_API }}
turbo-team: ${{ secrets.TURBO_TEAM }}
turbo-token: ${{ secrets.TURBO_TOKEN }}
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
- name: Check for errors
run: pnpm run check --summarize
env:
NODE_OPTIONS: "--max_old_space_size=8192"
CI_OS: ${{ runner.os }}
- name: Check the changesets
run: node -r esbuild-register tools/deployments/validate-changesets.ts
- name: Upload turbo logs
if: always()
uses: actions/upload-artifact@v4
with:
name: turbo-runs-${{ matrix.os }}-${{ matrix.node }}
path: .turbo/runs
# Check for old Node.js version warnings and errors
- name: Use Node.js v16
uses: actions/setup-node@v4
with:
node-version: 16
- name: Check for error message on Node.js < v18
run: node packages/wrangler/src/__tests__/test-old-node-version.js error
- name: Use Node.js v18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Check for error message on Node.js < v20
run: node packages/wrangler/src/__tests__/test-old-node-version.js error
test-vp:
if: github.head_ref == 'changeset-release/main' || contains(github.event.*.labels.*.name, 'every-os' )
timeout-minutes: 30
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.filter }}-${{ matrix.node_version }}-test
cancel-in-progress: true
name: ${{ format('Tests ({0})', matrix.os_name) }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-24.04-arm
os_name: Linux
node_version: 20.19.1
filter: '--filter="./tools" --filter="./packages/*" --filter="./fixtures/*" --filter="./packages/vite-plugin-cloudflare/playground"'
- os: windows-latest
os_name: Windows
node_version: 20.19.1
filter: '--filter="./packages/*" --filter="./fixtures/*" --filter="./packages/vite-plugin-cloudflare/playground"'
- os: ubuntu-24.04-arm
os_name: v22, Linux
node_version: 22
filter: '--filter="./packages/*" --filter="!./packages/kv-asset-handler"'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
everything_but_markdown:
- '!**/*.md'
- name: Install Dependencies
if: steps.changes.outputs.everything_but_markdown == 'true'
uses: ./.github/actions/install-dependencies
with:
turbo-api: ${{ secrets.TURBO_API }}
turbo-team: ${{ secrets.TURBO_TEAM }}
turbo-token: ${{ secrets.TURBO_TOKEN }}
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
node-version: ${{ matrix.node_version }}
- name: Run tests
if: steps.changes.outputs.everything_but_markdown == 'true'
run: pnpm run test:ci --concurrency 1 ${{ matrix.filter }} --log-order=stream
env:
TEST_CLOUDFLARE_API_TOKEN: ${{ secrets.TEST_CLOUDFLARE_API_TOKEN }}
TEST_CLOUDFLARE_ACCOUNT_ID: ${{ secrets.TEST_CLOUDFLARE_ACCOUNT_ID }}
NODE_OPTIONS: "--max_old_space_size=8192"
WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/
TEST_REPORT_PATH: ${{ runner.temp }}/test-report/index.html
CI_OS: ${{ matrix.os_name }}
- name: Upload turbo logs
if: always()
uses: actions/upload-artifact@v4
with:
name: turbo-runs-${{ matrix.os }}-${{ matrix.node }}
path: .turbo/runs
test:
timeout-minutes: 30
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.filter }}-${{ matrix.node_version }}-test
cancel-in-progress: true
name: ${{ format('Tests ({0})', matrix.os_name) }}
strategy:
fail-fast: false
matrix:
include:
- os: macos-latest
os_name: macOS
node_version: 20.19.1
filter: '--filter="./packages/*" --filter="./fixtures/*" --filter="./packages/vite-plugin-cloudflare/playground" --summarize'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
everything_but_markdown:
- '!**/*.md'
- name: Install Dependencies
if: steps.changes.outputs.everything_but_markdown == 'true'
uses: ./.github/actions/install-dependencies
with:
turbo-api: ${{ secrets.TURBO_API }}
turbo-team: ${{ secrets.TURBO_TEAM }}
turbo-token: ${{ secrets.TURBO_TOKEN }}
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
node-version: ${{ matrix.node_version }}
- name: Run tests
if: steps.changes.outputs.everything_but_markdown == 'true'
run: pnpm run test:ci --concurrency 1 ${{ matrix.filter }}
env:
TEST_CLOUDFLARE_API_TOKEN: ${{ secrets.TEST_CLOUDFLARE_API_TOKEN }}
TEST_CLOUDFLARE_ACCOUNT_ID: ${{ secrets.TEST_CLOUDFLARE_ACCOUNT_ID }}
NODE_OPTIONS: "--max_old_space_size=8192"
WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/
TEST_REPORT_PATH: ${{ runner.temp }}/test-report/index.html
CI_OS: ${{ matrix.os_name }}
- name: Upload turbo logs
if: always()
uses: actions/upload-artifact@v4
with:
name: turbo-runs-${{ matrix.os }}-${{ matrix.node }}
path: .turbo/runs