File tree Expand file tree Collapse file tree 2 files changed +40
-27
lines changed Expand file tree Collapse file tree 2 files changed +40
-27
lines changed Original file line number Diff line number Diff line change
1
+ name : eslint-plugin-jest-dom
2
+ on :
3
+ push :
4
+ branches :
5
+ - " master"
6
+ - " alpha"
7
+ pull_request :
8
+
9
+ jobs :
10
+ test :
11
+ name : " node ${{ matrix.node }} ${{matrix.browser}} ${{ matrix.os }} "
12
+ runs-on : " ${{ matrix.os }}"
13
+ strategy :
14
+ matrix :
15
+ os : [ubuntu-latest]
16
+ node : [15, 14, 12, 10]
17
+ browser : ["chrome:headless", "firefox:headless"]
18
+ steps :
19
+ - uses : actions/setup-node@v1
20
+ with :
21
+ node-version : ${{ matrix.node }}
22
+ - uses : actions/checkout@v1
23
+ - run : npm install
24
+ - run : npm run validate
25
+ - run : npx codecov@3
26
+ release :
27
+ runs-on : ubuntu-latest
28
+ needs : test
29
+ steps :
30
+ - uses : actions/setup-node@v1
31
+ with :
32
+ node-version : 12
33
+ - uses : actions/checkout@v1
34
+ - run : npm install
35
+ - run : npm run build
36
+ - run : ls -asl dist
37
+ - run : npx semantic-release
38
+ env :
39
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments