diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 4e23aa6..14af44c 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -24,6 +24,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: yarn install + - run: yarn lint - run: yarn test env: CI: true diff --git a/package.json b/package.json index 7cc4ca2..41cc1d0 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "eslint": "8.57.0" }, "scripts": { - "lint": "eslint src --fix", + "lint": "eslint src", "test": "TZ=Europe/Zurich c8 --reporter=text --reporter=html node --test __tests__/*.js", "prepublishOnly": "yarn test", "postpublish": "git push && git push --tags"