fix: outdated version warning #5646
Workflow file for this run
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: PR Extensions builds | |
on: [pull_request, workflow_dispatch] | |
env: | |
COINBASE_APP_ID: ${{ secrets.COINBASE_APP_ID }} | |
MOONPAY_API_KEY: ${{ secrets.MOONPAY_API_KEY }} | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
SEGMENT_WRITE_KEY: ${{ secrets.SEGMENT_WRITE_KEY_STAGING }} | |
TRANSAK_API_KEY: ${{ secrets.TRANSAK_API_KEY }} | |
PR_NUMBER: ${{ github.event.number }} | |
COMMIT_SHA: ${{ github.event.pull_request.head.sha }} | |
WALLET_ENVIRONMENT: feature | |
jobs: | |
pre-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@ad6cb1b847ffb509a69b745b6ee2f1d14dfe14b8 | |
with: | |
access_token: ${{ github.token }} | |
build-in-progress-message: | |
name: | |
if: github.repository == 'leather-wallet/extension' && github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
needs: | |
- pre-run | |
steps: | |
- uses: kyranjamie/[email protected] | |
with: | |
header: '> _Building Leather…_' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
build: | |
name: Build debug Chrome extension | |
runs-on: ubuntu-latest | |
needs: | |
- pre-run | |
strategy: | |
matrix: | |
target: [chromium, firefox] | |
env: | |
TARGET_BROWSER: ${{ matrix.target }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/cache@v3 | |
id: cache-node-modules | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/package.json') }} | |
- uses: ./.github/actions/provision | |
- run: echo ${{ github.event.pull_request.head.sha }} | |
- name: Build project | |
run: yarn build | |
- name: Build extension | |
run: sh build-ext.sh | |
- uses: actions/upload-artifact@v3 | |
name: Upload ${{ matrix.target }} Extension Zip | |
with: | |
name: leather-${{ matrix.target }} | |
path: dist | |
add-download-link: | |
name: Add link to built extensions | |
if: github.repository == 'leather-wallet/extension' && github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
needs: | |
- pre-run | |
- build | |
steps: | |
- uses: kyranjamie/[email protected] | |
with: | |
header: '> Try out this version of Leather — [download extension builds](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}).' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |