Skip to content

Commit a230bf4

Browse files
committed
fixes core lib link
1 parent 3bbca04 commit a230bf4

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.github/workflows/onRelease.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,15 @@ jobs:
1212
id-token: write
1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
15+
- uses: actions/setup-node@v6
1616
with:
17-
node-version: latest
17+
node-version: 18
18+
cache: "pnpm"
19+
- uses: pnpm/action-setup@v4
20+
name: Install pnpm
21+
with:
22+
version: 10
23+
cache: true
1824
- run: pnpm install
1925
- run: pnpm run build
2026
- run: pnpm run prepack

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,18 @@ jobs:
88
unit-tests:
99
strategy:
1010
matrix:
11-
os: ['ubuntu-latest', 'windows-latest']
11+
os: ["ubuntu-latest", "windows-latest"]
1212
node_version: [lts/-1, lts/*, latest]
1313
fail-fast: false
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: actions/setup-node@v4
17+
- uses: pnpm/action-setup@v4
18+
name: Install pnpm
19+
with:
20+
version: 10
21+
cache: true
22+
- uses: actions/setup-node@v6
1823
with:
1924
node-version: ${{ matrix.node_version }}
2025
cache: pnpm

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@oclif/core": "^4",
1212
"@oclif/plugin-help": "^6",
1313
"@oclif/plugin-plugins": "^5",
14-
"@promactinfo/moa-cli": "file:../moa-cli-core",
14+
"@promactinfo/moa-cli": "^0.1.0",
1515
"@inquirer/prompts": "^8.2.0"
1616
},
1717
"devDependencies": {

0 commit comments

Comments
 (0)