Skip to content

build(deps-dev): bump webpack from 5.91.0 to 5.94.0 #201

build(deps-dev): bump webpack from 5.91.0 to 5.94.0

build(deps-dev): bump webpack from 5.91.0 to 5.94.0 #201

Workflow file for this run

name: E2E Test
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize, reopened, labeled]
jobs:
apisix:
runs-on: ubuntu-latest
env:
BACKEND_APISIX_VERSION: 3.9.1-debian
steps:
- uses: actions/checkout@v4
# Setup backend environment
- name: Setup Apache APISIX
working-directory: ./libs/backend-apisix/e2e/assets
run: docker compose up -d; sleep 10
# Build and test ADC CLI
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install
# Run E2E tests
- name: Run E2E tests
run: npx nx run backend-apisix:e2e
api7:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'test/api7') || github.event_name == 'push'
strategy:
matrix:
version: [3.2.14.6, 3.2.15.2, 3.2.16.2]
env:
BACKEND_API7_VERSION: ${{ matrix.version }}
BACKEND_API7_DOWNLOAD_URL: https://run.api7.ai/api7-ee/api7-ee-v${{ matrix.version }}.tar.gz
BACKEND_API7_LICENSE: ${{ secrets.BACKEND_API7_LICENSE }}
steps:
- uses: actions/checkout@v4
# Build and test ADC CLI
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
# Run API7 E2E tests
- name: Run E2E tests
run: npx nx run backend-api7:e2e