Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kahboom committed Jun 4, 2024
1 parent bfa960d commit 23258b0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false # https://github.com/cypress-io/github-action/issues/48
matrix:
browser: [ chrome, electron ]
env:
Expand All @@ -27,6 +28,16 @@ jobs:
- name: Checkout 🛎
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Build Next.js App
run: npm run build
env:
NEXT_PUBLIC_REKOR_DEFAULT_DOMAIN: ${{ matrix.env.NEXT_PUBLIC_REKOR_DEFAULT_DOMAIN }}

# - name: Download the build folder
# uses: actions/download-artifact@v4
# with:
Expand Down Expand Up @@ -67,14 +78,3 @@ jobs:
path: cypress/videos
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`

# - name: Upload Electron artifacts 📸
# uses: actions/upload-artifact@v4
# with:
# name: electron-artifacts
# path: |
# ./artifacts/electron/videos
# ./artifacts/electron/screenshots
# if-no-files-found: ignore
# retention-days: 5


0 comments on commit 23258b0

Please sign in to comment.