File tree Expand file tree Collapse file tree 2 files changed +36
-35
lines changed Expand file tree Collapse file tree 2 files changed +36
-35
lines changed Original file line number Diff line number Diff line change @@ -44,22 +44,22 @@ jobs:
44
44
- name : Running unit tests
45
45
run : npm run test:unit
46
46
47
- test_integration :
48
- name : Integration Tests
49
- needs :
50
- - lint
51
- - test_unit
52
- runs-on : self-hosted
53
- strategy :
54
- max-parallel : 1
55
- matrix :
56
- node-version : [18.x, 20.x]
57
- steps :
58
- - name : Creating `.env` file
59
- run : |
60
- touch .env
61
- echo HOST=${{ secrets.HOST }} >> .env
62
- echo EMAIL=${{ secrets.EMAIL }} >> .env
63
- echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
64
- - name : Running integration tests
65
- run : npm run test:integration
47
+ # test_integration:
48
+ # name: Integration Tests
49
+ # needs:
50
+ # - lint
51
+ # - test_unit
52
+ # runs-on: self-hosted
53
+ # strategy:
54
+ # max-parallel: 1
55
+ # matrix:
56
+ # node-version: [18.x, 20.x]
57
+ # steps:
58
+ # - name: Creating `.env` file
59
+ # run: |
60
+ # touch .env
61
+ # echo HOST=${{ secrets.HOST }} >> .env
62
+ # echo EMAIL=${{ secrets.EMAIL }} >> .env
63
+ # echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
64
+ # - name: Running integration tests
65
+ # run: npm run test:integration
Original file line number Diff line number Diff line change @@ -35,26 +35,27 @@ jobs:
35
35
- name : Running unit tests
36
36
run : npm run test:unit
37
37
38
- test_integration :
39
- name : Integration Tests
40
- needs :
41
- - lint
42
- - test_unit
43
- runs-on : self-hosted
44
- steps :
45
- - name : Creating `.env` file
46
- run : |
47
- touch .env
48
- echo HOST=${{ secrets.HOST }} >> .env
49
- echo EMAIL=${{ secrets.EMAIL }} >> .env
50
- echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
51
- - name : Running integration tests
52
- run : npm run test:integration
38
+ # test_integration:
39
+ # name: Integration Tests
40
+ # needs:
41
+ # - lint
42
+ # - test_unit
43
+ # runs-on: self-hosted
44
+ # steps:
45
+ # - name: Creating `.env` file
46
+ # run: |
47
+ # touch .env
48
+ # echo HOST=${{ secrets.HOST }} >> .env
49
+ # echo EMAIL=${{ secrets.EMAIL }} >> .env
50
+ # echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
51
+ # - name: Running integration tests
52
+ # run: npm run test:integration
53
53
54
54
publish :
55
55
name : Package publish
56
56
needs :
57
- - test_integration
57
+ - lint
58
+ - test_unit
58
59
runs-on : self-hosted
59
60
steps :
60
61
- name : Publishing
You can’t perform that action at this time.
0 commit comments