Skip to content

Bump eslint-plugin-jsx-a11y from 6.8.0 to 6.9.0 #814

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

Bump eslint-plugin-jsx-a11y from 6.8.0 to 6.9.0 #814

Workflow file for this run

name: CI
on:
push:
tags:
- "*"
branches:
- "dev"
pull_request:
branches:
- "*"
concurrency: CI
jobs:
test-javascript:
name: 'Test JavaScript'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm i
- name: Run tests
run: npm run lint
env:
CI: true
automerge:
name: Auto Merge Dependabot
needs: [test-javascript]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]
with:
github-token: ${{secrets.PA_TOKEN}}