chore(deps): bump elliptic from 6.5.2 to 6.5.7 #421
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: push | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Cache node modules | |
uses: actions/cache@v1 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.config/yarn/global # npm cache files are stored in `~/.npm` on Linux/macOS | |
key: | |
${{ runner.os }}-build-${{ env.cache-name }}-${{ | |
hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install libs | |
run: sudo apt-get install libudev-dev | |
- name: Install Dependencies | |
run: yarn | |
- name: TypeScript Check | |
run: | | |
npm run typecheck | |
- name: ESLint | |
run: | | |
npm run lint | |
- name: Test | |
env: | |
SKIP_PREFLIGHT_CHECK: true | |
run: | | |
npm run test:plain |