diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32b3d16..913752e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,3 +13,5 @@ on: jobs: test: uses: fastify/workflows/.github/workflows/plugins-ci.yml@v3 + with: + lint: true diff --git a/package.json b/package.json index 0f47ecd..ca0abfb 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,10 @@ "main": "index.js", "types": "index.d.ts", "scripts": { - "test": "standard && tap test.js && tsd" + "lint": "standard", + "test": "npm run test:unit && npm run test:types", + "test:unit": "tap test.js", + "test:types": "tsd" }, "repository": { "type": "git",