File tree 3 files changed +21
-37
lines changed 3 files changed +21
-37
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on : [push, pull_request]
3
+ jobs :
4
+ build :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - uses : actions/checkout@v2
8
+ - uses : actions/setup-node@v2
9
+ - run : yarn --frozen-lockfile
10
+ - run : yarn build
11
+ - run : yarn test --coverage
12
+ - if : github.event.repository.fork == false && github.event_name != 'pull_request'
13
+ run : yarn dv-scripts ci
14
+ env :
15
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
17
+ - uses : codecov/codecov-action@v2
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 46
46
"extends" : " dv-scripts"
47
47
},
48
48
"jest" : {
49
+ "coveragePathIgnorePatterns" : [
50
+ " ReactNativeFastImageExample*" ,
51
+ " ReactNativeFastImageExampleServer*"
52
+ ],
49
53
"modulePathIgnorePatterns" : [
50
54
" ReactNativeFastImageExample*" ,
51
55
" ReactNativeFastImageExampleServer*"
You can’t perform that action at this time.
0 commit comments