Skip to content

Bump elliptic from 6.5.4 to 6.5.7 in /web #837

Bump elliptic from 6.5.4 to 6.5.7 in /web

Bump elliptic from 6.5.4 to 6.5.7 in /web #837

Workflow file for this run

name: UnitTest
on: [push, pull_request]
defaults:
run:
working-directory: web
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
# https://dev.to/mpocock1/how-to-cache-nodemodules-in-github-actions-with-yarn-24eh
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn run test:unit