aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-07-18 20:16:00 +0200
committerGitHub <noreply@github.com>2022-07-18 20:16:00 +0200
commitd8ca0a983dff84b0d73f3a135ed0142570d7dae0 (patch)
tree4bd75ee7f9a5f45ead883ab9168a5e75a04e1036 /.github
parent9bf6d930482020083f07395d3b0b1f5130c8fccd (diff)
Delete lint.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
deleted file mode 100644
index 1253bc4..0000000
--- a/.github/workflows/lint.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Lint
-
-on:
- # Trigger the workflow on push or pull request,
- # but only for the main branch
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
-
-jobs:
- run-linters:
- name: Run linters
- runs-on: ubuntu-latest
-
- steps:
- - name: Check out Git repository
- uses: actions/checkout@v2
-
- - name: Set up Node.js
- uses: actions/setup-node@v1
- with:
- node-version: 12
-
- # ESLint and Prettier must be in `package.json`
- - name: Install Node.js dependencies
- run: npm ci
-
- - name: Run linters
- uses: wearerequired/lint-action@v2
- with:
- eslint: true
- prettier: true