feat: add clojure
support
#1005
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Chrome Plugin | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
merge_group: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install `pandoc` | |
run: sudo apt-get update && sudo apt-get install pandoc -y | |
- name: Install `wasm-pack` | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build Chrome Plugin | |
run: just build-chrome-plugin | |
- name: Build Firefox Plugin | |
run: just build-firefox-plugin | |
- name: Upload Chrome extension | |
uses: actions/upload-artifact@v4 | |
with: | |
name: harper-chrome-plugin.zip | |
path: "packages/chrome-plugin/package/harper-chrome-plugin.zip" | |
- name: Upload Firefox extension | |
uses: actions/upload-artifact@v4 | |
with: | |
name: harper-firefox-plugin.zip | |
path: "packages/chrome-plugin/package/harper-firefox-plugin.zip" |