We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9eda78 commit 9fbc883Copy full SHA for 9fbc883
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: MinaJS Continuous Integration
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ test:
8
+ name: Test
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: oven-sh/setup-bun@v2
13
+ - run: bun i --no-save
14
+ - run: bun run test
15
+ release:
16
+ name: Release
17
18
+ needs: test
19
20
21
22
23
+ - run: bun run build
24
+ - run: bunx pkg-pr-new publish './packages/klesia-sdk'
.github/workflows/test.yml
0 commit comments