Skip to content

Commit

Permalink
add GH action to run tests against react@canary on a schedule (#12232)
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas authored Dec 18, 2024
1 parent ed3eed7 commit aa1ee9f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/scheduled-test-canary.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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`

on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tag:
- canary
- experimental
steps:
- uses: actions/checkout@v4
- 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 }}
# 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'"

0 comments on commit aa1ee9f

Please sign in to comment.