Skip to content

fix(background): allow disconnect if key already removed from wallet #635

fix(background): allow disconnect if key already removed from wallet

fix(background): allow disconnect if key already removed from wallet #635

Workflow file for this run

name: PR Checks
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
browser: [chrome, firefox]
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Environment setup
uses: ./.github/actions/setup
- name: Build
shell: bash
run: pnpm build ${{ matrix.browser }}
- name: Upload artifacts
uses: actions/[email protected]
with:
name: ${{ github.event.pull_request.number }}-${{ matrix.browser }}
path: dist/${{ matrix.browser }}.zip
if-no-files-found: error
lint:
name: Lint
runs-on: ubuntu-22.04
continue-on-error: true
env:
FORCE_COLOR: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Environment setup
uses: ./.github/actions/setup
- run: pnpm format
if: always()
- run: pnpm lint
if: always()
- run: pnpm typecheck
if: always()
- name: Check spelling
uses: streetsidesoftware/cspell-action@v6
if: always()
test:
name: Test
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Environment setup
uses: ./.github/actions/setup
- name: Test
run: pnpm test:ci