Merge pull request #3 from yamadashy/claude/update-readme-firefox-add… #15
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 Extensions | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .tool-versions | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build Chrome Extension | |
| run: npm run build chrome | |
| - name: Build Firefox Extension | |
| run: npm run build firefox | |
| - name: Build Edge Extension | |
| run: npm run build edge | |
| - name: Archive packages | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: packages | |
| path: packages |