diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05e0a68dc..28383ab44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,27 @@ jobs: - name: Install dependencies run: npm ci - name: Test affected projects - run: npx nx affected:test --parallel=3 --configuration=ci + run: npx nx affected:test --parallel=3 + + e2e: + runs-on: ubuntu-latest + name: E2E tests + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: 18 + cache: npm + - name: Set base and head for Nx affected commands + uses: nrwl/nx-set-shas@v3 + - name: Install dependencies + run: npm ci + - name: Test affected projects + run: npx nx affected:e2e --parallel=3 build: runs-on: ubuntu-latest