Add Chrome Web Store link #32
This file contains 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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install dependencies | |
run: bun install | |
- name: Run lints | |
run: bun run lint | |
- name: Build extensions | |
run: | | |
bun run zip | |
bun run zip:firefox | |
- name: Upload Chrome artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: chrome-extension | |
path: .output/chrome-mv3 | |
if-no-files-found: error | |
- name: Upload Firefox artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firefox-extension | |
path: .output/firefox-mv2 | |
if-no-files-found: error |