From 36eb8d599a746137fe1ec65af754303c492f179c Mon Sep 17 00:00:00 2001 From: Jelle van Snik Date: Mon, 2 May 2022 17:18:54 +0200 Subject: [PATCH] update linting action --- .github/workflows/linting.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 33db8187..b43b4f01 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -14,21 +14,16 @@ jobs: runs-on: ubuntu-latest steps: - - name: Check out Git repository + - name: Checkout code uses: actions/checkout@v2 - - - name: Set up Node.js + + - name: Install Node.js uses: actions/setup-node@v1 with: node-version: 16 - - - name: Install Node.js dependencies + + - name: Install Yarn packages run: yarn install - + - name: Run linters - uses: wearerequired/lint-action@v2 - with: - eslint: true - eslint_args: --max-warnings=0 src - eslint_extensions: tsx,ts - eslint_auto_fix: false \ No newline at end of file + run: yarn lint