File tree Expand file tree Collapse file tree 2 files changed +26
-3
lines changed
Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - master
7+
8+ jobs :
9+ linux :
10+ name : Linux - Lint
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ with :
15+ fetch-depth : 0
16+ - uses : actions/setup-node@v2
17+ with :
18+ node-version : 14
19+ cache : npm
20+ - run : npm ci
21+ - run : |
22+ npm run commitlint -- \
23+ --verbose \
24+ --from `git merge-base origin/master $GITHUB_SHA`
25+ - run : npm run lint
Original file line number Diff line number Diff line change 77
88jobs :
99 main :
10- name : Lint and Unit (Client and Server), E2E and Integration Test
10+ name : Unit (Client and Server), E2E and Integration Test
1111 runs-on : ubuntu-latest
1212 env :
1313 BROWSERSTACK_USERNAME : ${{ secrets.BROWSERSTACK_USERNAME }}
2323 node-version : 14
2424 cache : npm
2525 - run : npm ci
26- - run : npm run commitlint -- --from `git merge-base origin/master $GITHUB_SHA`
27- - run : npm run lint
2826 - run : npm run build:check
2927 - run : npm run test:unit
3028 - run : npm run test:e2e
You can’t perform that action at this time.
0 commit comments