Skip to content

Bump eslint-plugin-jsx-a11y from 6.6.1 to 6.10.2 #1230

Bump eslint-plugin-jsx-a11y from 6.6.1 to 6.10.2

Bump eslint-plugin-jsx-a11y from 6.6.1 to 6.10.2 #1230

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Use node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test