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