Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

canary test adjustments #12233

Merged
merged 5 commits into from
Dec 18, 2024
Merged
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
25 changes: 19 additions & 6 deletions .github/workflows/scheduled-test-canary.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,38 @@
# a GitHub Action that once a day runs all tests from `main` and `release-*` branches
# with the latest `canary` and `experimental` release of `react` and `react-dom`

name: Scheduled React Canary Test
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
branches:
description: "Branches to test"
required: true
default: '["main", "release-3.13", "release-4.0"]'
tags:
description: "React and React-DOM versions"
required: true
default: '["canary", "experimental"]'
Comment on lines +8 to +16
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This allows us to manually run against different targets - see https://github.com/apollographql/apollo-client/actions/runs/12394062292 as an example run that only ran against one different branch.

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tag:
- canary
- experimental
tag: ${{ fromJson(github.event_name == 'workflow_dispatch' && inputs.tags || '["canary", "experimental"]') }}
branch: ${{ fromJson(github.event_name == 'workflow_dispatch' && inputs.branches || '["main", "release-3.13", "release-4.0"]') }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- uses: actions/setup-node@v4
with:
node-version: 22.x
- uses: bahmutov/npm-install@v1
- run: npm install react@${{ matrix.tag }} react-dom@${{ matrix.tag }}
- run: |
npm install react@${{ matrix.tag }} react-dom@${{ matrix.tag }}
# tests can be flaky, this runs only once a day and we want to minimize false negatives - retry up to three times
- run: "parallel --line-buffer -j 1 --retries 3 'npm run test:ci -- --selectProjects ' ::: 'ReactDOM 19'"
- run: |
node -e 'console.log("\n\nReact %s, React-DOM %s\n\n", require("react").version, require("react-dom").version)'
parallel --line-buffer -j 1 --retries 3 'npm test -- --logHeapUsage --selectProjects ' ::: 'ReactDOM 19'
Loading