diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 5bec5e5..111eda5 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -185,6 +185,8 @@ jobs: runs-on: ubuntu-latest container: image: mcr.microsoft.com/playwright:v1.53.1-jammy + env: + CI: true steps: - uses: actions/checkout@v4 @@ -231,7 +233,6 @@ jobs: - name: Run Playwright Tests (4 Shards) run: pnpm exec turbo run test:e2e:all timeout-minutes: 10 - - name: Upload Playwright Report uses: actions/upload-artifact@v4 if: always() diff --git a/turbo.json b/turbo.json index 908333d..30d7815 100644 --- a/turbo.json +++ b/turbo.json @@ -18,12 +18,12 @@ }, "build": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro,json}"], + "inputs": ["src/**/*"], "outputs": ["dist/**"] }, "test": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": [] }, "spell": { @@ -33,33 +33,33 @@ }, "test:e2e": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard1": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard2": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard3": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard4": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:all": { "cache": true, "dependsOn": ["test:e2e:shard1", "test:e2e:shard2", "test:e2e:shard3", "test:e2e:shard4"], - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] } },