fix: broken styles in mutations list #274
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: Extension Artifact Upload | |
on: | |
pull_request: | |
branches: [develop] | |
paths-ignore: | |
- 'apps/crawler-agent/**' | |
- 'apps/crawler-backend/**' | |
- 'apps/crawler-dashboard/**' | |
- 'apps/crawler-extension/**' | |
jobs: | |
create-artifact: | |
name: Test build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.9.0 | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf | |
ssh://[email protected]/ | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build extension | |
run: pnpm build:extension | |
- name: Upload a Build Artifact | |
id: upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mutable-web-extension-${{ github.head_ref }} | |
path: apps/extension/build/ | |
if-no-files-found: error |