-
Notifications
You must be signed in to change notification settings - Fork 11
30 lines (28 loc) · 849 Bytes
/
eslint.yml
File metadata and controls
30 lines (28 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# ESLint is a tool for identifying and reporting on patterns
# found in ECMAScript/JavaScript code.
# More details at https://github.com/eslint/eslint
# and https://eslint.org
name: ESLint
# yamllint disable-line rule:truthy
on: [push]
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ESLint
run: npm install
- name: Create Dummy Bot Config
run: touch bot-config.json
- name: Run ESLint
run: npx eslint . --config .eslintrc.js