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.
2 parents 4546151 + 134033a commit 9ee3b65Copy full SHA for 9ee3b65
.github/workflows/lint.yml
@@ -0,0 +1,25 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: '20'
19
+ cache: 'npm'
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Run ESLint
25
+ run: npm run lint
src/PullRequestViewer.tsx
@@ -2,7 +2,6 @@
import React, { useState, useEffect } from 'react';
-import axios from 'axios';
import { Octokit } from '@octokit/rest';
import Select from 'react-select';
0 commit comments