Skip to content

chore(deps): bump axios from 1.14.0 to 1.15.0 #1068

chore(deps): bump axios from 1.14.0 to 1.15.0

chore(deps): bump axios from 1.14.0 to 1.15.0 #1068

Workflow file for this run

name: E2E Test
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize, reopened, labeled]
env:
E2E: "1"
jobs:
cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# 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 cli:test
apisix:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- 3.2.2
- 3.3.0
- 3.4.0
- 3.5.0
- 3.6.0
- 3.7.0
- 3.8.1
- 3.9.1
- 3.10.0
- 3.11.0
- 3.12.0
- 3.13.0
- 3.14.1
env:
BACKEND_APISIX_VERSION: ${{ matrix.version }}
BACKEND_APISIX_IMAGE: ${{ matrix.version }}-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:test
apisix-standalone:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'test/apisix-standalone') || github.event_name == 'push'
strategy:
matrix:
version:
- 3.13.0
- 3.14.1
- dev
steps:
- name: Determine APISIX image tag
run: |
if [ "${{ matrix.version }}" = "dev" ]; then
echo "BACKEND_APISIX_VERSION=999.999.999" >> $GITHUB_ENV
echo "BACKEND_APISIX_IMAGE=dev" >> $GITHUB_ENV
else
echo "BACKEND_APISIX_VERSION=${{ matrix.version }}" >> $GITHUB_ENV
echo "BACKEND_APISIX_IMAGE=${{ matrix.version }}-ubuntu" >> $GITHUB_ENV
fi
- uses: actions/checkout@v4
# Setup backend environment
- name: Setup Apache APISIX
working-directory: ./libs/backend-apisix-standalone/e2e/assets
run: docker compose up -d; sleep 10; docker ps -a
# 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-standalone:test
api7:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'test/api7') || github.event_name == 'push'
permissions:
contents: read
packages: read
strategy:
fail-fast: false
matrix:
version: [3.5.5, 3.6.1, 3.7.8, 3.8.23, 3.9.9, dev]
steps:
- name: Determine API7 image and license
run: |
if [ "${{ matrix.version }}" = "dev" ]; then
echo "BACKEND_API7_VERSION=999.999.999" >> $GITHUB_ENV
echo "API7_DASHBOARD_IMAGE=ghcr.io/api7/api7-ee-3-integrated" >> $GITHUB_ENV
echo "API7_IMAGE_TAG=dev" >> $GITHUB_ENV
{
echo "BACKEND_API7_LICENSE<<EOLICENSE"
echo "${{ secrets.BACKEND_API7_DEV_LICENSE }}"
echo "EOLICENSE"
} >> $GITHUB_ENV
else
echo "BACKEND_API7_VERSION=${{ matrix.version }}" >> $GITHUB_ENV
echo "API7_DASHBOARD_IMAGE=api7/api7-ee-3-integrated" >> $GITHUB_ENV
echo "API7_IMAGE_TAG=v${{ matrix.version }}" >> $GITHUB_ENV
{
echo "BACKEND_API7_LICENSE<<EOLICENSE"
echo "${{ secrets.BACKEND_API7_LICENSE }}"
echo "EOLICENSE"
} >> $GITHUB_ENV
fi
- uses: actions/checkout@v4
- name: Login to GHCR
if: matrix.version == 'dev'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# 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:test