Skip to content

Update global wallet icon #631

Update global wallet icon

Update global wallet icon #631

Workflow file for this run

name: Run & Upload Test Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
- feature/**
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the full history instead of a shallow clone
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: browser-actions/setup-chrome@v1
- run: chrome --version
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y rsync
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build:all
- name: Run Jest tests
run: pnpm test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
files: '**/coverage-final.json'
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true