File tree 2 files changed +27
-2
lines changed
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 @@ -64,7 +64,6 @@ describe('create-react-app', () => {
64
64
it ( 'uses npm as the package manager' , async ( ) => {
65
65
await run ( [ projectName , '--use-npm' ] , {
66
66
cwd : __dirname ,
67
- stdio : 'inherit' ,
68
67
} ) ;
69
68
70
69
// Assert for the generated files
@@ -81,7 +80,6 @@ describe('create-react-app', () => {
81
80
it ( 'creates a project in the current based on the typescript template' , async ( ) => {
82
81
await run ( [ projectName , '--template' , 'typescript' ] , {
83
82
cwd : __dirname ,
84
- stdio : 'inherit' ,
85
83
} ) ;
86
84
87
85
// Assert for the generated files
You can’t perform that action at this time.
0 commit comments