diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 620d1bbb2..1da1b0f6b 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -22,7 +22,7 @@ jobs: - name: Run checks run: | npm run lint-check - npm run ci-test + npm run test npm run ts-check python3 ./etc/scripts/util/propscheck.py - uses: codecov/codecov-action@v4 diff --git a/.github/workflows/test-win.yml b/.github/workflows/test-win.yml index fe016aa59..c1330e75f 100644 --- a/.github/workflows/test-win.yml +++ b/.github/workflows/test-win.yml @@ -29,5 +29,5 @@ jobs: run: npm run ts-check shell: cmd - name: Test - run: npm run ci-test + run: npm run test shell: cmd diff --git a/package.json b/package.json index a31e2694f..6eeb3ea80 100644 --- a/package.json +++ b/package.json @@ -144,8 +144,6 @@ "@rollup/rollup-win32-x64-msvc": "*" }, "scripts": { - "ci-test": "vitest run", - "ci-lint": "biome check .", "cypress": "cypress run", "lint": "biome check . --write", "lint-check": "biome check .",