chore: Bump elliptic from 6.5.3 to 6.5.7 in /docs #65
Workflow file for this run
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: 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 |