Add externalIgnores
option for vue/singleline-html-element-content-newline
#812
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
- name: Install Packages | |
run: npm install --legacy-peer-deps | |
- name: Lint | |
run: npm run lint | |
test: | |
name: Test | |
strategy: | |
matrix: | |
node: [17, 18, 20] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js v${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Packages | |
run: npm install --legacy-peer-deps | |
- name: Test | |
run: npm test | |
test-for-ts-eslint-v5: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js v${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Packages | |
run: npm install --legacy-peer-deps | |
- name: Install typescript-eslint v5 | |
run: npm install -D @typescript-eslint/parser | |
- name: Test | |
run: npm test |