Skip to content

Commit

Permalink
Try without zip
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcconechy committed Sep 5, 2024
1 parent 8aea017 commit a5d4358
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ jobs:
- name: Install Browsers
run: npx playwright install --with-deps

- name: Run Tests with Coverage
run: npm run test:coverage:ci
env:
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Build again
run: npm run build

Expand All @@ -62,6 +57,11 @@ jobs:
NODE_OPTIONS: "--max-old-space-size=8192"
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}

- name: Run Tests with Coverage
run: npm run test:coverage:ci
env:
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"publish:debug": "npm run build:dist && npm run copy-static:dev && cd build/dist/development && npm publish",
"publish:link": "npm run build:dist && npm run copy-static:dev && cd build/dist/development && npm link",
"test": "PERCY_LOGLEVEL=silent npx playwright test",
"test:percy": "export PERCY_GZIP=true && npx percy exec -- npx playwright test --grep 'percy'",
"test:percy:ci": "export PERCY_GZIP=true && PERCY_LOGLEVEL=silent && npx percy exec -- npx playwright test --workers=1 --grep 'percy'",
"test:percy": "npx percy exec -- npx playwright test --grep 'percy'",
"test:percy:ci": "npx percy exec -- npx playwright test --workers=1 --grep 'percy'",
"test:coverage": "npx rimraf .nyc_output && npm run build:coverage && npm run test && npx nyc report && open coverage/index.html",
"test:coverage:ci": "npx rimraf .nyc_output && npm run build:coverage && npx playwright test --reporter=list --grep-invert 'percy' && npx nyc report",
"test:coverage:no-build": "npx rimraf .nyc_output && npm run test && npx nyc report && open coverage/index.html",
Expand Down

0 comments on commit a5d4358

Please sign in to comment.