diff --git a/.github/workflows/handle-release-branch-push.yml b/.github/workflows/handle-release-branch-push.yml index 40f4a01a..fd73d778 100644 --- a/.github/workflows/handle-release-branch-push.yml +++ b/.github/workflows/handle-release-branch-push.yml @@ -15,7 +15,9 @@ jobs: - name: Lint command: test:lint - name: Unit tests - command: test + command: test:unit + - name: E2E tests + command: test:e2e steps: - name: Checkout uses: actions/checkout@v4 diff --git a/package.json b/package.json index 2a3d2fe5..8dd302ad 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,8 @@ "prerelease": "npm run test:lint && npm run build", "release": "xs bump,publish,git-push", "test": "tsc --project tsconfig.test.json && vitest run", + "test:e2e": "tsc --project tsconfig.test.json && vitest run --project e2e", + "test:unit": "tsc --project tsconfig.test.json && vitest run --project unit", "test:lint": "xs lint", "test:watch": "vitest" },