We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb3ed8d commit c5124ffCopy full SHA for c5124ff
.github/workflows/main.yml
@@ -63,11 +63,13 @@ jobs:
63
steps:
64
- uses: actions/checkout@v2
65
- run: npm install
66
- - run: npx xvfb-maybe aegir test -t electron-main --bail
+ - run: npm run build -- --esm-tests # build tests with esm
67
+ - run: npx xvfb-maybe aegir test -t electron-main -f "dist/cjs/node-test/*js" --bail
68
test-electron-renderer:
69
needs: check
70
runs-on: ubuntu-latest
71
72
73
- - run: npx xvfb-maybe aegir test -t electron-renderer --bail
74
75
+ - run: npx xvfb-maybe aegir test -t electron-renderer -f "dist/cjs/node-test/*js" --bail
0 commit comments