mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-06 06:36:13 +00:00
* Remove 'react' packages from monorepo dependencies. * Ensure 'react-native-web' package is built first.
21 lines
484 B
YAML
21 lines
484 B
YAML
name: react@next integration
|
|
|
|
on:
|
|
schedule:
|
|
# Run every Monday at 12:00 (see https://crontab.guru)
|
|
- cron: '0 12 * * 1'
|
|
|
|
jobs:
|
|
react-next:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '16.x'
|
|
- run: npm install
|
|
# Update react-native-web to use react@next
|
|
- run: npm update react@next react-dom@next -w react-native-web
|
|
# Run the unit tests
|
|
- run: npm run unit
|