Skip to content

Commit 355a84f

Browse files
committed
integration tests temporary disabled
1 parent 247a5bd commit 355a84f

File tree

2 files changed

+36
-35
lines changed

2 files changed

+36
-35
lines changed

.github/workflows/ci.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,22 @@ jobs:
4444
- name: Running unit tests
4545
run: npm run test:unit
4646

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

.github/workflows/publish.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,27 @@ jobs:
3535
- name: Running unit tests
3636
run: npm run test:unit
3737

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
5353

5454
publish:
5555
name: Package publish
5656
needs:
57-
- test_integration
57+
- lint
58+
- test_unit
5859
runs-on: self-hosted
5960
steps:
6061
- name: Publishing

0 commit comments

Comments
 (0)