generated from silverbulletmd/silverbullet-plug-template
-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (45 loc) · 1.49 KB
/
deno-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Deno build test and push
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Deno
# uses: denoland/setup-deno@v1
uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2
with:
deno-version: v1.x
- name: Verify formatting
run: deno fmt --check
- name: Run Deno test
run: deno task test
- name: Coverage
run: deno coverage --lcov cov_profile/ > cov.lcov
# - name: Run linter
# run: deno lint
- name: Setup silverbullet
run: deno install -f --name silverbullet --unstable-kv --unstable-worker-options -A https://get.silverbullet.md
- name: Add Deno bin to PATH
run: echo "$HOME/.deno/bin" >> $GITHUB_PATH
- name: Verify PATH
run: echo $PATH
- name: Silverbullet version
run: silverbullet --version
- name: Run Deno build task
run: deno task build-release
- name: Commit and push if on main
if: github.ref == 'refs/heads/main'
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'actions@github.com'
git add silverbullet-ai.plug.js || true
git commit -m "Auto update silverbullet-ai.plug.js [skip ci]" || true
git push