1 parent 00425b0 commit 82b079dCopy full SHA for 82b079d
2 files changed
.github/workflows/build.yml
@@ -25,10 +25,15 @@ jobs:
25
- uses: oven-sh/setup-bun@v2.1.2
26
with:
27
bun-version: 1.3.9
28
+ - uses: actions/setup-node@v4
29
- run: bun install --frozen-lockfile
30
- run: bun run build:linux-amd64
31
- run: bin/linux-amd64/gitlab-ci-local --version
32
- run: bin/linux-amd64/gitlab-ci-local --help
33
+ - run: bun run build:node
34
+ - run: node dist/index.js --version
35
+ - run: node dist/index.js --help
36
+ - run: head -1 dist/index.js | grep -q '#!/usr/bin/env node'
37
38
eslint:
39
runs-on: ubuntu-24.04
src/index.ts
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env bun
+#!/usr/bin/env node
2
import chalk from "chalk-template";
3
import yargs from "yargs";
4
import {Parser} from "./parser.js";
0 commit comments