From b75c71a258ef2832561c351d45c4a38386bc8b2c Mon Sep 17 00:00:00 2001 From: Anton Golub Date: Mon, 1 Apr 2024 21:54:20 +0300 Subject: [PATCH] ci: refactor smoke tests flow (#763) --- .github/workflows/test.yml | 17 ----------------- package.json | 1 - 2 files changed, 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a6f0d6a181..b5b035ea69 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,23 +64,6 @@ jobs: env: FORCE_COLOR: 3 - # smoke-node14: - # needs: build - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v4 - # - name: Use Node.js 14.x - # uses: actions/setup-node@v4 - # with: - # node-version: 14.x - # - uses: actions/download-artifact@v4 - # with: - # name: build - # - run: npm run test:smoke:node14 - # timeout-minutes: 1 - # env: - # FORCE_COLOR: 3 - smoke-bun: runs-on: ubuntu-latest needs: build diff --git a/package.json b/package.json index 9adeaf30c3..9014bf1e50 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,6 @@ "test:unit": "node ./test/all.test.js", "test:types": "tsd", "test:smoke:bun": "bun test ./test/smoke/bun.test.js", - "test:smoke:node14": "node --experimental-modules ./test/smoke/node-esm.test.js", "test:smoke:win32": "node ./test/smoke/win32.test.js", "coverage": "c8 -x build/vendor.js -x 'test/**' -x scripts --check-coverage npm test", "circular": "madge --circular src/*",