Skip to content

Commit 5004c98

Browse files
New CI/CD processes (#366)
* publish workflow updated * # This is a combination of 2 commits. # This is the 1st commit message: publish workflow updated
1 parent 170f804 commit 5004c98

File tree

6 files changed

+195
-184
lines changed

6 files changed

+195
-184
lines changed

.github/workflows/ci.yaml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -64,30 +64,30 @@ jobs:
6464
- name: Running unit tests
6565
run: npm run test:unit
6666

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

Comments
 (0)