From 19e7539e534471707d394fac2da266df902f6d33 Mon Sep 17 00:00:00 2001 From: Ethan Lane Date: Fri, 20 Aug 2021 16:10:06 +0100 Subject: [PATCH] Remove linting workflow --- .github/workflows/lint.yml | 28 ---------------------------- 1 file changed, 28 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 1b07763..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Lint - -on: - push: - branches: [ main, develop ] - pull_request: - branches: [ main, develop, feature/** ] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [12.x, 14.x, 16.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: yarn install --frozen-lockfile - - run: yarn build - - run: yarn run lint