From eb8a2542807ccd9a1c6235f8853c045d7b1e94fb Mon Sep 17 00:00:00 2001 From: Nikki Ysendoorn Date: Mon, 18 Mar 2024 16:07:29 +0100 Subject: [PATCH] :arrow_up: [#49] remove eslint from workflow --- .github/workflows/ci.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d85e53d..79eabaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: - name: Build Storybook docs run: | npm install - npm build-storybook --quiet + npm run storybook --quiet - name: Upload artifact uses: actions/upload-pages-artifact@v1 @@ -84,23 +84,6 @@ jobs: - name: Run prettier linter run: npm checkformat - eslint: - name: eslint (code formatting) - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version-file: '.nvmrc' - cache: npm - - - name: Install dependencies - run: npm install - - - name: Run ESLint - run: npm test:lint - tests: name: Run Storybook tests runs-on: ubuntu-latest @@ -140,7 +123,6 @@ jobs: needs: - storybook - prettier - - eslint - tests # do not run in forks & only publish main branch if: github.ref_name == 'main' && github.repository_owner == 'open-formulieren' @@ -169,7 +151,6 @@ jobs: needs: - build-package - prettier - - eslint - tests # do not publish in forks or non-tag pushes