summaryrefslogtreecommitdiff
path: root/packages/misskey-js/.github/workflows/lint.yml
diff options
context:
space:
mode:
Diffstat (limited to 'packages/misskey-js/.github/workflows/lint.yml')
-rw-r--r--packages/misskey-js/.github/workflows/lint.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/packages/misskey-js/.github/workflows/lint.yml b/packages/misskey-js/.github/workflows/lint.yml
deleted file mode 100644
index cdf6d202e0..0000000000
--- a/packages/misskey-js/.github/workflows/lint.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Lint
-
-on: [push, pull_request]
-
-jobs:
- lint:
-
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: Setup Node.js
- uses: actions/setup-node@v1
- with:
- node-version: 16.5.0
-
- - name: Cache dependencies
- uses: actions/cache@v2
- with:
- path: ~/.npm
- key: npm-${{ hashFiles('package-lock.json') }}
- restore-keys: npm-
-
- - name: Install dependencies
- run: npm ci
-
- - name: Lint
- run: npm run lint