Skip to content

Commit

Permalink
Revert "Test with coverage only for Linux to prevent out of memory"
Browse files Browse the repository at this point in the history
This reverts commit f844cce.
  • Loading branch information
ybiquitous committed Feb 13, 2024
1 parent ca4dd47 commit 2b8d858
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:

- name: Install stylelint v15
run: npm i -D stylelint@^15
if: ${{ matrix.stylelint == '15' }}
if: matrix.stylelint == 15

- name: Install stylelint v14
run: npm i -D stylelint@^14 stylelint-scss@^4.3.0
if: ${{ matrix.stylelint == '14' }}
if: matrix.stylelint == 14

- name: Cache VS Code binaries
uses: actions/cache@v4
Expand All @@ -68,25 +68,15 @@ jobs:
run: npm run download-vscode

- name: Run unit tests
run: npm run test:unit
if: ${{ runner.os != 'Linux' }}

- name: Run unit tests (coverage)
run: npm run test:unit -- --coverage
if: ${{ runner.os == 'Linux' }}

- name: Run integration tests
run: npm run test:integration
if: ${{ runner.os != 'Linux' }}

- name: Run integration tests (coverage)
run: npm run test:integration -- --coverage
if: ${{ runner.os == 'Linux' }}

- name: Run end-to-end tests (Linux)
if: runner.os == 'Linux'
run: xvfb-run -a npm run test:e2e -- --silent
if: ${{ runner.os == 'Linux' }}

- name: Run end-to-end tests (non-Linux)
if: runner.os != 'Linux'
run: npm run test:e2e -- --silent
if: ${{ runner.os != 'Linux' }}

0 comments on commit 2b8d858

Please sign in to comment.