Skip to content

WIP: Silverbullet v2 support #141

WIP: Silverbullet v2 support

WIP: Silverbullet v2 support #141

Workflow file for this run

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@v5
- name: Setup Deno
# uses: denoland/setup-deno@v1
uses: denoland/setup-deno@e95548e56dfa95d4e1a28d6f422fafe75c4c26fb # v2.0.3
with:
deno-version: v2.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 --global 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'
# TODO: Not keeping this in git anymore, probably? Add to release instead?
# git add silverbullet-ai.plug.js || true
# git commit -m "Auto update silverbullet-ai.plug.js [skip ci]" || true
# git push