Skip to content

React (canary)

React (canary) #40

Workflow file for this run

name: "React (canary)"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
cypress-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Setup react
run: yarn up react@canary react-dom@canary
- name: Build packages
run: yarn run build
- name: Cypress Components
uses: cypress-io/github-action@v6
with:
install: false
command: yarn run test:components
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots