From abc7dce047572f3640922b087988eb7febc1614a Mon Sep 17 00:00:00 2001 From: DanielNoord Date: Wed, 27 Jan 2021 00:05:42 +0100 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/main.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 4052a36..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: CI -on: [push, pull_request] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '12' - - name: Install dependencies - run: | - npm init - npm install eslint --save-dev - - name: Lint - run: | - npx eslint --init - npx eslint . --ext .js