Skip to content

Revert "test: add test case for issue #4334" #1665

Revert "test: add test case for issue #4334"

Revert "test: add test case for issue #4334" #1665

Workflow file for this run

name: Linter
on:
push:
branches:
- "master"
- "v7.0.0"
paths:
- "lib/**"
- "test/**"
- ".github/workflows/linter.yml"
pull_request:
paths:
- "lib/**"
- "test/**"
- ".github/workflows/linter.yml"
permissions:
contents: read
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 14.x
uses: actions/setup-node@v4
with:
node-version: "14.x"
- name: Install Dependencies
run: npm install
- name: Lint
run: |
npm run eslint
env:
CI: true