We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2cda3 commit b47cd95Copy full SHA for b47cd95
1 file changed
.github/workflows/build-binaries.yml
@@ -71,6 +71,14 @@ jobs:
71
- name: Build SEA binary
72
run: npm run build:sea --workspace=packages/cli
73
74
+ - name: Smoke test binary
75
+ shell: bash
76
+ run: |
77
+ EXT=${{ matrix.target == 'win-x64' && '".exe"' || '""' }}
78
+ BIN="packages/cli/dist/neaps${EXT}"
79
+ "$BIN" --version
80
+ "$BIN" --help
81
+
82
- name: Verify reproducible build
83
shell: bash
84
run: |
0 commit comments