Skip to content

feat(GENAI-830): Support error responses #41

feat(GENAI-830): Support error responses

feat(GENAI-830): Support error responses #41

Workflow file for this run

name: E2E Tests
on:
push:
paths:
- .github/workflows/e2e.yaml
- .github/workflows/e2e-template.yaml
- e2e/**
- frontend/**
- backend/**
- services/reis/**
- dev/caddy-gateway-proxy/**
branches:
- '**'
tags-ignore:
- "**"
workflow_call:
defaults:
run:
working-directory: e2e
jobs:
build:

Check failure on line 24 in .github/workflows/e2e.yaml

View workflow run for this annotation

GitHub Actions / E2E Tests

Invalid workflow file

The workflow is not valid. .github/workflows/e2e.yaml (Line: 24, Col: 3): Error calling workflow 'codecentric/c4-genai-suite/.github/workflows/build-container-images.yaml@2ac7de061751f7f0f01296c9063998b815cdace2'. The nested job 'build-container' is requesting 'packages: write', but is only allowed 'packages: read'.
uses: ./.github/workflows/build-container-images.yaml
e2e:
needs:
- build
strategy:
fail-fast: false
matrix:
browser:
- chromium
- firefox
testdir:
- extension-tests
- tests
uses: ./.github/workflows/e2e-template.yaml
with:
browser: ${{ matrix.browser }}
testdir: ${{ matrix.testdir }}
secrets: inherit
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
cache-dependency-path: e2e/package-lock.json
- run: npm install
- run: npm run lint