Skip to content

Commit

Permalink
dsds
Browse files Browse the repository at this point in the history
  • Loading branch information
dfunckt committed Nov 7, 2023
1 parent 22b97f0 commit 686ef7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ runs:
set -ea
runner_os="$(echo "${RUNNER_OS}" | tr '[:upper:]' '[:lower:]')"
npm ci
pwd
npm run package
npm run test-${runner_os}
env:
Expand Down
2 changes: 1 addition & 1 deletion forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const config: ForgeConfig = {
env: 'ETCHER_UTIL_BIN_PATH',
path: './out/sidecar/bin/etcher-util',
build: {
command: 'tsc --project tsconfig.sidecar.json && pkg out/sidecar/util/api.js -c pkg-sidecar.json --target node18 --output out/sidecar/bin/etcher-util',
command: 'tsc --project tsconfig.sidecar.json && pkg ./out/sidecar/util/api.js -c pkg-sidecar.json --target node18 --output ./out/sidecar/bin/etcher-util',
sources: './lib/util/',
},
verbose: true,
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.sidecar.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"outDir": "out/sidecar"
"outDir": "./out/sidecar"
},
"include": ["lib/util"]
"include": ["./lib/util"]
}

0 comments on commit 686ef7e

Please sign in to comment.