Skip to content

Update dependency eslint-plugin-react to v7.37.1 #1006

Update dependency eslint-plugin-react to v7.37.1

Update dependency eslint-plugin-react to v7.37.1 #1006

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10'
- name: Get yarn cache directory path
id: yarn-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn modules
uses: actions/cache@v2
env:
cache-name: cache
with:
path: ${{ steps.yarn-path.outputs.dir }}
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 Dependencies
run: yarn
- name: Lint, test and build
run: |
yarn lint
yarn test:coverage
yarn build
- name: Send test code coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.codecov_token }}
file: ./coverage/lcov.info