Skip to content

fix: near social doesn't work #283

fix: near social doesn't work

fix: near social doesn't work #283

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