|
| 1 | +name: E2E Tests |
| 2 | +on: |
| 3 | + push: |
| 4 | + branches: [main] |
| 5 | + pull_request: |
| 6 | + branches: [main] |
| 7 | + |
| 8 | +env: |
| 9 | + POETRY_VERSION: "1.6.1" |
| 10 | + |
| 11 | +jobs: |
| 12 | + e2e: |
| 13 | + name: create-llama |
| 14 | + timeout-minutes: 60 |
| 15 | + strategy: |
| 16 | + fail-fast: true |
| 17 | + matrix: |
| 18 | + node-version: [18, 20] |
| 19 | + python-version: ["3.11"] |
| 20 | + os: [macos-latest, windows-latest] |
| 21 | + defaults: |
| 22 | + run: |
| 23 | + shell: bash |
| 24 | + runs-on: ${{ matrix.os }} |
| 25 | + steps: |
| 26 | + - uses: actions/checkout@v4 |
| 27 | + - name: Set up python ${{ matrix.python-version }} |
| 28 | + uses: actions/setup-python@v4 |
| 29 | + with: |
| 30 | + python-version: ${{ matrix.python-version }} |
| 31 | + - name: Install Poetry |
| 32 | + uses: snok/install-poetry@v1 |
| 33 | + with: |
| 34 | + version: ${{ env.POETRY_VERSION }} |
| 35 | + - uses: pnpm/action-setup@v2 |
| 36 | + - name: Setup Node.js ${{ matrix.node-version }} |
| 37 | + uses: actions/setup-node@v4 |
| 38 | + with: |
| 39 | + node-version: ${{ matrix.node-version }} |
| 40 | + cache: "pnpm" |
| 41 | + - name: Install dependencies |
| 42 | + run: pnpm install |
| 43 | + - name: Install Playwright Browsers |
| 44 | + run: pnpm exec playwright install --with-deps |
| 45 | + working-directory: . |
| 46 | + - name: Build create-llama |
| 47 | + run: pnpm run build |
| 48 | + working-directory: . |
| 49 | + - name: Pack |
| 50 | + run: pnpm pack --pack-destination ./output |
| 51 | + working-directory: . |
| 52 | + - name: Extract Pack |
| 53 | + run: tar -xvzf ./output/*.tgz -C ./output |
| 54 | + working-directory: . |
| 55 | + - name: Run Playwright tests |
| 56 | + run: pnpm exec playwright test |
| 57 | + env: |
| 58 | + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |
| 59 | + working-directory: . |
| 60 | + - uses: actions/upload-artifact@v3 |
| 61 | + if: always() |
| 62 | + with: |
| 63 | + name: playwright-report |
| 64 | + path: ./playwright-report/ |
| 65 | + retention-days: 30 |
0 commit comments