We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04a05c commit 11037beCopy full SHA for 11037be
.github/workflows/eslint-check.yml
@@ -1,25 +1,26 @@
1
-name: ESLint Check
+name: 'ESLint Check'
2
3
on:
4
workflow_dispatch:
5
pull_request:
6
-
+ branches: [ "main" ]
7
+
8
jobs:
9
lint:
- name: Run ESLint
10
+ name: 'Run ESLint'
11
runs-on: ubuntu-latest
12
13
steps:
- - name: Checkout repository
14
- uses: actions/checkout@v3
+ - name: 'Checkout repository'
15
+ uses: actions/checkout@v4
16
- - name: Setup Node.js
17
- uses: actions/setup-node@v3
+ - name: 'Setup Node.js'
18
+ uses: actions/setup-node@v4
19
with:
20
node-version: 20
21
- - name: Install Dependacnies
22
+ - name: 'Install Dependacnies'
23
run: npm install
24
- - name: Run ESLint quietly
25
+ - name: 'Run ESLint quietly'
26
run: npx eslint . --quiet
0 commit comments