Skip to content

Commit 12f82c8

Browse files
committed
Remove test jobs from build and deploy workflows
1 parent 844140e commit 12f82c8

File tree

2 files changed

+1
-38
lines changed

2 files changed

+1
-38
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,3 @@ jobs:
2525
- run: npm ci
2626
- run: npm run build
2727

28-
test:
29-
name: test
30-
runs-on: ubuntu-latest
31-
strategy:
32-
matrix:
33-
node-version: [14.x]
34-
steps:
35-
- uses: actions/checkout@main
36-
- name: Use Node.js ${{ matrix.node-version }}
37-
uses: actions/setup-node@main
38-
with:
39-
node-version: ${{ matrix.node-version }}
40-
- run: npm ci
41-
- uses: paambaati/[email protected]
42-
env:
43-
CI: true
44-
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
45-
with:
46-
coverageCommand: npm test

.github/workflows/deploy.yml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,4 @@ jobs:
2121
host: ${{ secrets.HOST }}
2222
username: ${{ secrets.USER_NAME }}
2323
privateKey: ${{ secrets.PRIVATE_KEY}}
24-
test:
25-
name: test
26-
runs-on: ubuntu-latest
27-
strategy:
28-
matrix:
29-
node-version: [15.x]
30-
steps:
31-
- uses: actions/checkout@main
32-
- name: Use Node.js ${{ matrix.node-version }}
33-
uses: actions/setup-node@main
34-
with:
35-
node-version: ${{ matrix.node-version }}
36-
- run: npm ci
37-
- uses: paambaati/[email protected]
38-
env:
39-
CI: true
40-
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
41-
with:
42-
coverageCommand: npm test
24+

0 commit comments

Comments
 (0)