Skip to content

Commit ace79d0

Browse files
committed
chore: add CI workflow and update void to 0.2.6
- Add GitHub Actions CI workflow to run vp check and vp test on push/PR - Update @void-sdk/void from 0.2.3 to 0.2.6
1 parent 7d967b0 commit ace79d0

3 files changed

Lines changed: 141 additions & 306 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: pnpm/action-setup@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: lts/*
17+
cache: pnpm
18+
registry-url: https://npm.pkg.github.com
19+
- run: pnpm install
20+
env:
21+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
- run: pnpm vp check
23+
- run: pnpm vp test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"devDependencies": {
1010
"vite": "catalog:",
1111
"vite-plus": "catalog:",
12-
"void": "npm:@void-sdk/void@0.2.3"
12+
"void": "npm:@void-sdk/void@0.2.6"
1313
},
1414
"packageManager": "pnpm@10.33.0"
1515
}

0 commit comments

Comments
 (0)