Skip to content

Commit

Permalink
CI: remove cruft from Lerna migration (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm authored Sep 21, 2024
1 parent dbbce40 commit ea4e4a0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jobs:
if: ${{ needs.path-filter.outputs.changes == 'true' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-13, macos-14, windows-latest ]
node-version:
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-darwin-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && pwd && cp -f ../../LICENSE ../../README.md ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
4 changes: 1 addition & 3 deletions packages/chdman/src/chdman/chdmanBin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ export default class ChdmanBin {
ChdmanBin.CHDMAN_BIN = prebuilt;
return prebuilt;
}
} catch (error) {
console.log(error);
}
} catch { /* ignored */ }

const resolved = await which('chdman', { nothrow: true });
if (resolved) {
Expand Down
5 changes: 0 additions & 5 deletions packages/chdman/test/chdman/chdmanCd.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ import ChdmanInfo from '../../src/chdman/chdmanInfo.js';
import TestUtil from '../testUtil.js';
import { CHDType } from '../../src/chdman/common.js';

// import {jest} from '@jest/globals';
// jest.unstable_mockModule(`chdman-${process.platform}-${process.arch}`, () => {
// const i = 0;
// });

it('should fail on nonexistent file', async () => {
const temporaryChd = `${await TestUtil.mktemp(path.join(os.tmpdir(), 'dummy'))}.chd`;
const temporaryCue = `${temporaryChd}.cue`;
Expand Down

0 comments on commit ea4e4a0

Please sign in to comment.