Skip to content

Extend jsx-a11y to also look for Next.js Images #938

Extend jsx-a11y to also look for Next.js Images

Extend jsx-a11y to also look for Next.js Images #938

Workflow file for this run

name: 'Test'
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: 'Run Tests 🧪'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup Node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version: '16.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install and build
run: |
npm ci
npm run build
- name: Run Jest
run: npm run test