Skip to content

Commit

Permalink
ci: Add daily test job for react canary
Browse files Browse the repository at this point in the history
Signed-off-by: suyanhanx <[email protected]>
  • Loading branch information
suyanhanx committed May 4, 2023
1 parent 3c91aff commit be7faf6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-canary.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test React Canary

on:
schedule:
- cron: '0 0 * * *'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/workflows/install

- name: Install Canary
run: pnpm upgrade react@canary react-dom@canary

- name: Lint and test
run: |
pnpm run-all-checks
pnpm clean
pnpm build
pnpm test:build

0 comments on commit be7faf6

Please sign in to comment.