Skip to content

Bump eslint-plugin-vuejs-accessibility from 2.2.1 to 2.3.0 #1030

Bump eslint-plugin-vuejs-accessibility from 2.2.1 to 2.3.0

Bump eslint-plugin-vuejs-accessibility from 2.2.1 to 2.3.0 #1030

Workflow file for this run

name: "ci"
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
node-version: '16.x'
- run: npm ci --no-progress
- run: npm run lint
test:
name: Test using Node.js ${{ matrix.node }} running on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16, 18, 20]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- run: npm ci --no-progress
- run: npm test