Bump elliptic from 6.5.3 to 6.5.7 in /frontend #394
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: JavaScript Lint | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install yarn packages | |
run: yarn add eslint@latest | |
- name: Install eslint React Plugin | |
run: yarn add eslint-plugin-react@latest | |
- name: Install Google style plugin | |
run: yarn add eslint-config-google@latest | |
- name: Lint with ESLint | |
run: ./node_modules/.bin/eslint frontend/**/*.js |