chore: sync radar rules and ignore build outputs #365
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: test | |
| on: | |
| push: | |
| env: | |
| WXT_UMAMI_ID: ${{ vars.WXT_UMAMI_ID || vars.PLASMO_PUBLIC_UMAMI_ID }} | |
| WXT_UMAMI_URL: ${{ vars.WXT_UMAMI_URL || vars.PLASMO_PUBLIC_UMAMI_URL }} | |
| WXT_UMAMI_SAMPLE_RATE: ${{ vars.WXT_UMAMI_SAMPLE_RATE || vars.PLASMO_PUBLIC_UMAMI_SAMPLE_RATE }} | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| name: Build assets | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache pnpm modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.pnpm-store | |
| key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}- | |
| - uses: pnpm/action-setup@v3.0.0 | |
| with: | |
| version: latest | |
| run_install: true | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v4.0.2 | |
| with: | |
| node-version: 22.x | |
| cache: "pnpm" | |
| - name: Package the extension for Chrome | |
| run: pnpm zip | |
| - name: Package the extension for Firefox | |
| run: pnpm zip:firefox | |
| - name: Package the extension for Safari | |
| run: pnpm build:safari:zip | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build | |
| path: | | |
| build/safari-mv3-prod.zip | |
| build/chrome-mv3-prod.zip | |
| build/firefox-mv3-prod.zip |