@capgo/cli 4.2.0 → 4.2.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/test.yml +7 -11
- package/CHANGELOG.md +768 -587
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -11,24 +11,20 @@ jobs:
|
|
|
11
11
|
name: "Build code and test"
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out
|
|
14
|
-
uses: actions/checkout@
|
|
15
|
-
-
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
- name: Setup bun
|
|
16
|
+
uses: oven-sh/setup-bun@v1.1.1
|
|
16
17
|
with:
|
|
17
|
-
version:
|
|
18
|
-
- name: Use Node.js
|
|
19
|
-
uses: actions/setup-node@v3
|
|
20
|
-
with:
|
|
21
|
-
node-version: 18
|
|
22
|
-
cache: "pnpm"
|
|
18
|
+
bun-version: latest
|
|
23
19
|
- name: Install dependencies
|
|
24
20
|
id: install_code
|
|
25
|
-
run:
|
|
21
|
+
run: bun install --frozen-lockfile
|
|
26
22
|
- name: Lint
|
|
27
23
|
id: lint_code
|
|
28
|
-
run:
|
|
24
|
+
run: bun run lint
|
|
29
25
|
- name: Build
|
|
30
26
|
id: build_code
|
|
31
|
-
run:
|
|
27
|
+
run: bun run build
|
|
32
28
|
- name: Run
|
|
33
29
|
id: run_cli
|
|
34
30
|
run: node dist/index.js --help
|