From abadfef5a7154b97bb1dbac1304766429f42d81c Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 28 Feb 2022 00:34:39 -0800 Subject: [PATCH] Remove unused workflow. I'd added this early on with the intent of implementing is but forgot to come back to it. We should do that at some point. --- .github/workflows/lint.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 8134cef7..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build - -on: [push, pull_request] - -jobs: - lint: - runs-on: windows-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 - - - name: Install Node.js dependencies - run: npm ci - - - name: Lint - run: | - cd client - npm run lint