diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 6284ff6..76e3265 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -36,6 +36,8 @@ jobs: main-branch-name: main - name: Run Checks run: pnpm run test:pr + - name: Run Integration Tests + run: pnpm run test:integration preview: name: Preview runs-on: ubuntu-latest diff --git a/package.json b/package.json index f94a303..0052532 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,7 @@ "test:ci": "tsc --noEmit && nx run-many --targets=test:eslint,test:sherif,test:knip,test:docs,test:lib,test:integration,test:types,build", "test:docs": "node scripts/verify-links.ts", "test:eslint": "nx affected --target=test:eslint --exclude=examples/**", + "test:integration": "nx affected --targets=test:integration --exclude=examples/**", "test:knip": "knip", "test:lib": "nx affected --targets=test:lib --exclude=examples/**", "test:lib:dev": "pnpm test:lib && nx watch --all -- pnpm test:lib",