From 50c8b46e2222d2100cc4dc0551da767fd2822eb3 Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Thu, 1 Dec 2022 13:43:42 -0500 Subject: [PATCH] Delete lint.yml --- .github/workflows/lint.yml | 36 ------------------------------------ 1 file changed, 36 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 cbc9ac3b..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Lint - -on: - workflow_dispatch: - push: - branches: [ "main" ] - paths: - - core/** - pull_request: - branches: [ "main" ] - paths: - - core/** - -jobs: - lint: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Setup Node - uses: actions/setup-node@v3 - with: - cache: yarn - cache-dependency-path: core/yarn.lock - node-version: 16 - - - name: Install - working-directory: ./core - run: | - yarn install --frozen-lockfile - - - name: Lint - working-directory: ./core - run: | - yarn lint