diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95c154426a..0cdee4cacf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,12 +72,6 @@ jobs: - name: Install Dependencies run: npm ci - - name: Build NPM package - run: npm run build:npm - - - name: Build Deno package - run: npm run build:deno - - name: Run Integration Tests run: npm run check:integrations diff --git a/package.json b/package.json index 22494ebc88..44518ffba3 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "fuzzonly": "mocha --full-trace src/**/__tests__/**/*-fuzz.js", "changelog": "node resources/gen-changelog.js", "benchmark": "node benchmark/benchmark.js", - "test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling && npm run build:npm && npm run build:deno && npm run check:integrations", + "test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling && npm run check:integrations", "lint": "eslint --cache .", "check": "flow check", "testonly": "mocha --full-trace src/**/__tests__/**/*-test.js", @@ -37,7 +37,7 @@ "prettier": "prettier --write --list-different .", "prettier:check": "prettier --check .", "check:spelling": "cspell --no-progress '**/*'", - "check:integrations": "mocha --full-trace integrationTests/*-test.js", + "check:integrations": "npm run build:npm && npm run build:deno && mocha --full-trace integrationTests/*-test.js", "build:npm": "node resources/build-npm.js", "build:deno": "node resources/build-deno.js", "gitpublish:npm": "bash ./resources/gitpublish.sh npm npmDist",