File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Integration Tests
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ job :
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ matrix :
16
+ os : ['ubuntu-latest', 'macos-latest', 'windows-latest']
17
+ node : ['10', '12', '14']
18
+ steps :
19
+ - uses : actions/checkout@v2
20
+ - name : Setup node
21
+ uses : actions/setup-node@v1
22
+ with :
23
+ node-version : ${{ matrix.node }}
24
+ - name : Install packages
25
+ run : yarn --no-progress --non-interactive --no-lockfile
26
+ - name : Run integration tests
27
+ run : yarn test:integration
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ describe('create-react-app', () => {
68
68
it ( 'uses npm as the package manager' , async ( ) => {
69
69
await run ( [ projectName , '--use-npm' ] , {
70
70
cwd : __dirname ,
71
- stdio : 'inherit' ,
72
71
} ) ;
73
72
74
73
// Assert for the generated files
@@ -83,7 +82,6 @@ describe('create-react-app', () => {
83
82
it ( 'creates a project in the current based on the typescript template' , async ( ) => {
84
83
await run ( [ projectName , '--template' , 'typescript' ] , {
85
84
cwd : __dirname ,
86
- stdio : 'inherit' ,
87
85
} ) ;
88
86
89
87
// Assert for the generated files
You can’t perform that action at this time.
0 commit comments