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 4f08eb0 commit 60b6851Copy full SHA for 60b6851
2 files changed
.github/workflows/nodejs.yml
@@ -24,9 +24,11 @@ jobs:
24
with:
25
node-version: ${{ matrix.node-version }}
26
- name: Install Redrun
27
- run: bun i redrun -g --no-save
+ run: bun i redrun madrun -g --no-save
28
- name: Install
29
run: bun i --no-save
30
+ - name: Init Madrun
31
+ run: madrun --init
32
- name: Lint
33
run: redrun fix:lint
34
- name: Typos
static/user-menu.spec.js
@@ -168,7 +168,9 @@ test('cloudcmd: static: user menu: C: exists: cancel', async (t) => {
168
const {write} = DOM.IO;
169
170
getCurrentByName.returns({});
171
- confirm.resolves([Error('cancel')]);
+ confirm.resolves([
172
+ Error('cancel'),
173
+ ]);
174
175
await defaultMenu[name]({
176
DOM,
0 commit comments