File tree 1 file changed +11
-12
lines changed
1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,19 @@ name: validate
2
2
on :
3
3
push :
4
4
branches :
5
- [
6
- ' +([0-9])?(.{+([0-9]),x}).x' ,
7
- ' master' ,
8
- ' next' ,
9
- ' next-major' ,
10
- ' beta' ,
11
- ' alpha' ,
12
- ' !all-contributors/**' ,
13
- ]
14
- pull_request :
15
- branches-ignore : ['all-contributors/**']
5
+ - ' +([0-9])?(.{+([0-9]),x}).x'
6
+ - ' master'
7
+ - ' next'
8
+ - ' next-major'
9
+ - ' beta'
10
+ - ' alpha'
11
+ - ' !all-contributors/**'
12
+ pull_request : {}
16
13
jobs :
17
14
main :
18
15
continue-on-error : ${{ matrix.react != 'latest' }}
16
+ # ignore all-contributors PRs
17
+ if : ${{ !contains(github.head_ref, 'all-contributors') }}
19
18
strategy :
20
19
matrix :
21
20
node : [10.13, 12, 14, 15]
38
37
# as requested by the React team :)
39
38
# https://reactjs.org/blog/2019/10/22/react-release-channels.html#using-the-next-channel-for-integration-testing
40
39
- name : ⚛️ Setup react
41
- run : npm install react@${{matrix.react}} react-dom@${{matrix.react}}
40
+ run : npm install react@${{ matrix.react }} react-dom@${{ matrix.react }}
42
41
43
42
- name : ▶️ Run validate script
44
43
run : npm run validate
You can’t perform that action at this time.
0 commit comments