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 1461bca commit 6222bbdCopy full SHA for 6222bbd
.github/workflows/checkPR.yml
@@ -0,0 +1,26 @@
1
+name: Run Checks and Tests on PR
2
+
3
+on: pull_request
4
5
+jobs:
6
+ check:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v4
12
13
+ - name: Install Bun
14
+ uses: oven-sh/setup-bun@v1
15
+ with:
16
+ bun-version: latest
17
18
+ - name: Install Dependencies
19
+ id: build
20
+ run: |
21
+ bun install
22
+ bun run pack:i
23
24
+ - name: Run Checks
25
26
+ bun run check
.github/workflows/release.yml
@@ -1,4 +1,4 @@
-name: Build obsidian plugin
+name: Create Plugin Release
on:
push:
@@ -35,6 +35,7 @@ jobs:
35
id: build
36
run: |
37
bun install
38
39
bun run build
40
mkdir ${{ env.PLUGIN_NAME }}
41
cp main.js manifest.json styles.css ${{ env.PLUGIN_NAME }}
0 commit comments