From 16de5c8e30ff026e521031feafe39e2fe69d8a3d Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Tue, 1 Oct 2024 17:02:26 +0200 Subject: [PATCH] fix: eslint action --- .github/workflows/run-tests.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1dbb5ae..9291b52 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ on: - '**' jobs: - lint-check: + build: runs-on: ubuntu-latest steps: @@ -22,24 +22,7 @@ jobs: cache: 'npm' # Enables caching for faster npm installs - run: npm ci - # Use npm ci instead of npm install for cleaner installs from package-lock.json - - run: npm run lint - # Run linting checks - - tests: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Set up Node.js 20.x - uses: actions/setup-node@v3 - with: - node-version: '20.x' - cache: 'npm' # Enables caching for faster npm installs - - - run: npm ci - run: npm run test-server & # Starts test-server in the background