dev to main #2176
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: UI - build, lint & test | |
on: | |
pull_request: | |
branches: [main, staging, development] | |
paths: | |
- 'packages/ui/**' | |
- 'packages/sdk/**' | |
- 'packages/functions/**' | |
- 'yarn.lock' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
- name: Install NPM packages | |
run: yarn install | |
env: | |
# Fixes issue: `ethereumjs-abi: The remote archive doesn't match the expected checksum` | |
YARN_CHECKSUM_BEHAVIOR: update | |
- name: Build `ui` | |
run: yarn build:deploy:ui | |
# - name: Lint `ui` | |
# run: yarn workspace @ionicprotocol/ui lint |