File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : react@next integration
2
+
3
+ on :
4
+ schedule :
5
+ # Run every Monday at 12:00 (see https://crontab.guru)
6
+ - cron : ' 0 12 * * 1'
7
+
8
+ jobs :
9
+ react-next :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : actions/setup-node@v1
14
+ with :
15
+ node-version : ' 14.x'
16
+ - run : npm install -g yarn
17
+ - run : yarn install
18
+ # Install next-tagged versions
19
+ - run : yarn upgrade react@next react-dom@next -W --dev
20
+ # Only run the unit tests
21
+ - run : yarn jest
Original file line number Diff line number Diff line change 27
27
"prerelease" : " yarn test && yarn compile" ,
28
28
"release" : " node ./scripts/release/publish.js" ,
29
29
"postrelease" : " yarn docs:release && yarn benchmarks:release" ,
30
- "test" : " yarn flow && yarn lint:report && yarn jest --runInBand"
30
+ "test" : " yarn flow && yarn fmt:report && yarn lint:report && yarn jest --runInBand"
31
31
},
32
32
"devDependencies" : {
33
33
"@babel/cli" : " ^7.12.13" ,
You can’t perform that action at this time.
0 commit comments