diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92a28b8..a6be385 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,9 +41,15 @@ jobs: bun add -g oxlint - name: Linter + if: matrix.nodejs >= 18 run: oxlint . + - name: Test + if: matrix.nodejs < 18 + run: bun run test + - name: Test w/ Coverage + if: matrix.nodejs >= 18 run: nyc --include=packages bun run test - name: Report diff --git a/package.json b/package.json index af1a23e..32100d2 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,6 @@ }, "scripts": { "build": "lerna exec bundt index.js", - "linter": "eslint packages --env node,es6", "test": "uvu -r esm -i util packages test" }, "devDependencies": {