@@ -64,30 +64,30 @@ jobs:
64
64
- name : Running unit tests
65
65
run : npm run test:unit
66
66
67
- test_integration :
68
- name : Integration Tests
69
- needs :
70
- - lint
71
- - test_unit
72
- runs-on : ubuntu-latest
73
- strategy :
74
- max-parallel : 1
75
- matrix :
76
- node-version : [18.x, 20.x]
77
- steps :
78
- - name : Checkout sources
79
- uses : actions/checkout@v4
80
- - name : Use Node.js ${{ matrix.node-version }}
81
- uses : actions/setup-node@v4
82
- with :
83
- node-version : ${{ matrix.node-version }}
84
- - name : Installing dependencies
85
- run : npm ci
86
- - name : Creating `.env` file
87
- run : |
88
- touch .env
89
- echo HOST=${{ secrets.HOST }} >> .env
90
- echo EMAIL=${{ secrets.EMAIL }} >> .env
91
- echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
92
- - name : Running integration tests
93
- run : npm run test:integration
67
+ # test_integration:
68
+ # name: Integration Tests
69
+ # needs:
70
+ # - lint
71
+ # - test_unit
72
+ # runs-on: ubuntu-latest
73
+ # strategy:
74
+ # max-parallel: 1
75
+ # matrix:
76
+ # node-version: [18.x, 20.x]
77
+ # steps:
78
+ # - name: Checkout sources
79
+ # uses: actions/checkout@v4
80
+ # - name: Use Node.js ${{ matrix.node-version }}
81
+ # uses: actions/setup-node@v4
82
+ # with:
83
+ # node-version: ${{ matrix.node-version }}
84
+ # - name: Installing dependencies
85
+ # run: npm ci
86
+ # - name: Creating `.env` file
87
+ # run: |
88
+ # touch .env
89
+ # echo HOST=${{ secrets.HOST }} >> .env
90
+ # echo EMAIL=${{ secrets.EMAIL }} >> .env
91
+ # echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
92
+ # - name: Running integration tests
93
+ # run: npm run test:integration
0 commit comments