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