Bump elliptic from 6.5.4 to 6.5.7 #322
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: test | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 12.x | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run coverageNode | |
- run: npm run coverageWeb -- --browsers=ChromeHeadless | |
- run: npm run coverageWeb -- --browsers=FirefoxHeadless | |
# Run webpack to check size limits. | |
- run: npx webpack --config config/webpack.prod.js |