diff --git a/.github/workflows/tests.yml b/.github/workflows/npm.yml similarity index 74% rename from .github/workflows/tests.yml rename to .github/workflows/npm.yml index 8332c2cb..9d4f341a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/npm.yml @@ -1,4 +1,4 @@ -name: Tests +name: npm on: push: @@ -7,7 +7,14 @@ on: branches: [master] jobs: - build: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: npm ci + - run: npm run lint + + test: runs-on: ubuntu-latest strategy: