Skip to content

Commit d3b4d91

Browse files
committed
get rid of browser tests
1 parent 2923193 commit d3b4d91

File tree

1 file changed

+0
-40
lines changed

1 file changed

+0
-40
lines changed

.github/workflows/CI-CD.yaml

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -52,52 +52,13 @@ jobs:
5252
github-token: ${{ secrets.GITHUB_TOKEN }}
5353
parallel: true
5454

55-
browser_tests:
56-
name: Browser Tests
57-
runs-on: ${{ matrix.os }}
58-
timeout-minutes: 10
59-
strategy:
60-
fail-fast: true
61-
matrix:
62-
os:
63-
- ubuntu-latest # Chrome, Firefox, Safari (TODO)
64-
# - windows-latest # Internet Explorer, Edge
65-
66-
steps:
67-
- name: Checkout source
68-
uses: actions/checkout@v4
69-
70-
- name: Install Node
71-
uses: actions/setup-node@v4
72-
with:
73-
node-version: 20
74-
cache: "npm"
75-
76-
- name: Install dependencies
77-
run: npm ci
78-
79-
- name: Run tests
80-
run: npm run coverage:browser
81-
82-
- name: Combine code coverage data into a single file
83-
shell: bash
84-
run: |
85-
ls -Rlh coverage/*/lcov.info
86-
cat coverage/*/lcov.info > ./coverage/lcov.info
87-
88-
- name: Send code coverage results to Coveralls
89-
uses: coverallsapp/github-action@v1.1.0
90-
with:
91-
github-token: ${{ secrets.GITHUB_TOKEN }}
92-
parallel: true
9355

9456
coverage:
9557
name: Code Coverage
9658
runs-on: ubuntu-latest
9759
timeout-minutes: 10
9860
needs:
9961
- node_tests
100-
# - browser_tests
10162
steps:
10263
- name: Let Coveralls know that all tests have finished
10364
uses: coverallsapp/github-action@v1.1.0
@@ -112,7 +73,6 @@ jobs:
11273
timeout-minutes: 10
11374
needs:
11475
- node_tests
115-
# - browser_tests
11676

11777
steps:
11878
- name: Checkout source

0 commit comments

Comments
 (0)