Skip to content

chore(deps): bump elliptic from 6.5.7 to 6.6.1 (#13) #52

chore(deps): bump elliptic from 6.5.7 to 6.6.1 (#13)

chore(deps): bump elliptic from 6.5.7 to 6.6.1 (#13) #52

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- develop
paths-ignore:
- '**.md'
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Invoke Test
run: yarn test
- name: Test website Build
run: |
cd website
yarn build