Skip to content

Commit

Permalink
removing e2e in ci for now
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Dec 16, 2023
1 parent 558643e commit 8cadb1b
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,15 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run compile
- name: Run headless test
if: matrix.os == 'windows-latest' # node 18.18.2 & vscode 1.84.2 works, another version breaks
uses: coactions/setup-xvfb@v1
with:
run: npm run test-with-coverage:e2e

# we need to test for windows > 1.85.1, current version breaks
# node 18.18.2 & vscode 1.84.2 works
# - name: Run headless test
# if: matrix.os == 'windows-latest'
# uses: coactions/setup-xvfb@v1
# with:
# run: npm run test-with-coverage:e2e

- name: Unit Tests
run: npm run test-with-coverage:unit
- name: Update server coverage badge
Expand All @@ -41,13 +45,15 @@ jobs:
files: ./server/coverage/coverage-final.json
verbose: true
flags: lsp-ide-server
- name: Update client coverage badge
uses: codecov/codecov-action@v3
if: matrix.os == 'windows-latest'
with:
files: ./client/coverage/coverage-final.json
verbose: true
flags: lsp-ide-client

# - name: Update client coverage badge
# uses: codecov/codecov-action@v3
# if: matrix.os == 'windows-latest'
# with:
# files: ./client/coverage/coverage-final.json
# verbose: true
# flags: lsp-ide-client

- name: Generate VSIX file
if: matrix.os == 'ubuntu-latest' && github.ref == 'refs/heads/master'
run: |
Expand Down

0 comments on commit 8cadb1b

Please sign in to comment.