Skip to content

chore: Bump elliptic from 6.5.3 to 6.5.7 in /docs #65

chore: Bump elliptic from 6.5.3 to 6.5.7 in /docs

chore: Bump elliptic from 6.5.3 to 6.5.7 in /docs #65

Workflow file for this run

name: Validate Pull Request
on: [pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x] # Updated to use more recent LTS versions
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: sudo apt-get install xvfb
- name: yarn install, build & tests
run: |
yarn install --frozen-lockfile
xvfb-run --auto-servernum yarn test
- name: Cleanup xvfb pidx
uses: bcomnes/cleanup-xvfb@v1
- name: Install and build docs
working-directory: docs
run: |
yarn
yarn build