File tree Expand file tree Collapse file tree 4 files changed +100
-30
lines changed
Expand file tree Collapse file tree 4 files changed +100
-30
lines changed Original file line number Diff line number Diff line change 1+ name : Chromium Build Test
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ node-versions : [12.x]
16+
17+ name : node${{ matrix.node-versions }}
18+ steps :
19+ - uses : actions/checkout@v2
20+ with :
21+ fetch-depth : 0
22+
23+ - name : Set up node ${{ matrix.node-versions }}
24+ uses : actions/setup-node@v1
25+ with :
26+ node-version : ${{ matrix.node-versions }}
27+
28+ - name : Install dependencies & test & build
29+ run : |
30+ npm ci
31+ npm test
32+ npm run libraries
33+ npm run webpack:build:chromium
34+ npm run test:build
Original file line number Diff line number Diff line change 1+ name : Firefox Build Test
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ node-versions : [12.x]
16+
17+ name : node${{ matrix.node-versions }}
18+ steps :
19+ - uses : actions/checkout@v2
20+ with :
21+ fetch-depth : 0
22+
23+ - name : Set up node ${{ matrix.node-versions }}
24+ uses : actions/setup-node@v1
25+ with :
26+ node-version : ${{ matrix.node-versions }}
27+
28+ - name : Install dependencies & test & build
29+ run : |
30+ npm ci
31+ npm test
32+ npm run libraries
33+ npm run webpack:build:firefox
34+ npm run test:build
Original file line number Diff line number Diff line change 1+ name : Scripts Test
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ node-versions : [12.x]
16+
17+ name : node${{ matrix.node-versions }}
18+ steps :
19+ - uses : actions/checkout@v2
20+
21+ - name : Set up node ${{ matrix.node-versions }}
22+ uses : actions/setup-node@v1
23+ with :
24+ node-version : ${{ matrix.node-versions }}
25+
26+ - name : Install dependencies & test & build
27+ env :
28+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29+ run : |
30+ cd scripts
31+ npm i
32+ npm start -- -
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments