File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed
Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 1+ name : PR Checks
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@main
14+ with :
15+ persist-credentials : false
16+
17+ - uses : actions/setup-node@v4
18+ with :
19+ node-version : " 22.x"
20+
21+ - name : Install
22+ run : npm install
23+
24+ - name : Build
25+ run : npm run build
26+
27+ - name : Test
28+ run : npm test
29+
30+ - name : E2E
31+ run : npm run e2e
32+ env :
33+ BUGSPLAT_HOST : ${{ secrets.BUGSPLAT_HOST }}
34+ BUGSPLAT_USER : ${{ secrets.BUGSPLAT_USER }}
35+ BUGSPLAT_PASSWORD : ${{ secrets.BUGSPLAT_PASSWORD }}
36+ BUGSPLAT_DATABASE : ${{ secrets.BUGSPLAT_DATABASE }}
37+ BUGSPLAT_CLIENT_ID : ${{ secrets.BUGSPLAT_CLIENT_ID }}
38+ BUGSPLAT_CLIENT_SECRET : ${{ secrets.BUGSPLAT_CLIENT_SECRET }}
Original file line number Diff line number Diff line change 1414 "prepare" : " husky install" ,
1515 "pretest" : " npm run lint:fix" ,
1616 "test" : " ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.spec.json" ,
17- "test:teamcity" : " ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.spec.json" ,
1817 "lint" : " eslint ." ,
1918 "lint:fix" : " npm run lint -- --fix" ,
2019 "e2e" : " ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.e2e.json" ,
You can’t perform that action at this time.
0 commit comments