Skip to content

Bump eslint-plugin-jsx-a11y from 6.4.1 to 6.9.0 #639

Bump eslint-plugin-jsx-a11y from 6.4.1 to 6.9.0

Bump eslint-plugin-jsx-a11y from 6.4.1 to 6.9.0 #639

Workflow file for this run

name: Build, Lint and Test CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
REACT_APP_API_KEY: ${{ secrets.REACT_APP_API_KEY }}
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install And Lint
run: yarn install && yarn run lint
env:
CI: true
- name: Build
run: yarn build
env:
CI: true
- name: Test
run: yarn test && yarn run e2e
env:
CI: true