From ff230a485d70a6ed65d8c4960b3367ddd165bcf9 Mon Sep 17 00:00:00 2001 From: Mina Kemp Date: Mon, 2 Dec 2024 06:05:19 -0800 Subject: [PATCH] Lint after npm install --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8e2c812..a37e549 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,9 +10,6 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Lint - run: npm run lint - - name: Setup Node.js uses: actions/setup-node@v3 with: @@ -21,6 +18,9 @@ jobs: - name: Install dependencies run: npm install + - name: Lint + run: npm run lint + - name: Run tests run: npm run test:ci