Skip to content

build(deps): bump elliptic from 6.5.4 to 6.6.0 in /ui #135

build(deps): bump elliptic from 6.5.4 to 6.6.0 in /ui

build(deps): bump elliptic from 6.5.4 to 6.6.0 in /ui #135

Workflow file for this run

---
name: Build UI
on:
push:
branches:
- master
- develop
- "release/**"
paths:
- "ui/**"
pull_request:
paths:
- "ui/**"
jobs:
node:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
defaults:
run:
working-directory: ./ui
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
cache-dependency-path: ui/yarn.lock
- name: Setup yarn and install
run: npm install -g yarn && yarn install
- name: Run Build ${{ matrix.node }}
run: |
read version _ <<< $(node --version)
echo $version
if [[ $version == "v18"* ]]; then
npm run build_v18
else
npm run build
fi
shell: bash