Skip to content

Commit

Permalink
fix: has to use yarn to build to support IE11
Browse files Browse the repository at this point in the history
npm causes dist/reporter.js not fully es6ified with unknown reason.
  • Loading branch information
3cp committed Oct 1, 2020
1 parent 516bbbc commit 59ff7a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: xvfb-run -a npm test
- run: yarn
- run: xvfb-run -a yarn test
if: runner.os == 'Linux'
- run: npm test
- run: yarn test
if: runner.os != 'Linux'
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@
"eslint": "^7.10.0",
"jasmine-core": "^3.6.0",
"mocha": "^8.1.3",
"socket.io-client": "^2.3.0",
"socket.io-client": "^2.3.1",
"source-map-support": "^0.5.19",
"standard-changelog": "^2.0.24",
"tape": "^5.0.1"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"commander": "^6.1.0",
"electron": "^10.1.2",
"electron": "^10.1.3",
"finalhandler": "^1.1.2",
"lodash.kebabcase": "^4.1.1",
"serve-static": "^1.14.1",
Expand Down

0 comments on commit 59ff7a2

Please sign in to comment.