fix(bridge-ui): add chain icons #1055
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: Bridge UI | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "packages/bridge-ui/**" | |
pull_request: | |
paths: | |
- "packages/bridge-ui/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install pnpm dependencies | |
uses: ./.github/actions/install-pnpm-dependencies | |
- name: Svelte check | |
working-directory: ./packages/bridge-ui | |
run: pnpm svelte:check | |
- name: Linting | |
working-directory: ./packages/bridge-ui | |
run: pnpm lint | |
- name: Unit tests | |
working-directory: ./packages/bridge-ui | |
run: pnpm test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: ./packages/bridge-ui/coverage | |
flags: bridge-ui |