We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba14613 commit 5ce6f69Copy full SHA for 5ce6f69
.github/workflows/ubuntu.yml
@@ -41,23 +41,23 @@ jobs:
41
${{ runner.os }}-
42
43
- name: Use Node.js ${{ matrix.node-version }}
44
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v2
45
with:
46
node-version: ${{ matrix.node-version }}
47
- name: Install Dependencies
48
- run: npm i
+ run: pnpm install
49
- name: Check lint
50
- run: npm run lint
+ run: pnpm run lint
51
- name: Build the app
52
- run: npm run electron:build
+ run: pnpm run electron:build
53
54
# - name: Run headless unit test
55
# uses: GabrielBB/xvfb-action@v1
56
# with:
57
-# run: npm test
+# run: pnpm test
58
59
# - name: Run headless e2e test
60
61
62
-# run: npm run e2e
+# run: pnpm run e2e
63
0 commit comments