Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpicado committed Sep 14, 2024
1 parent b613925 commit 7685031
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-plugins-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Docker Proxy Plugins Test 6.x
name: E2E Docker Proxy Plugins Test

on:
workflow_dispatch:
Expand All @@ -10,14 +10,14 @@ on:
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3

- name: Start containers
run: docker-compose -f "./docker/docker-build-install-plugin/docker-compose.yaml" up -d --build
run: docker compose -f "./docker/docker-build-install-plugin/docker-compose.yaml" up -d --build

- name: Install node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
Expand All @@ -35,4 +35,4 @@ jobs:

- name: Stop containers
if: always()
run: docker-compose -f "./docker/docker-build-install-plugin/docker-compose.yaml" down
run: docker compose -f "./docker/docker-build-install-plugin/docker-compose.yaml" down
8 changes: 4 additions & 4 deletions .github/workflows/docker-proxy-apache-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Docker Proxy Apache Test 6.x
name: E2E Docker Proxy Apache Test
on:
workflow_dispatch:
pull_request:
Expand All @@ -9,14 +9,14 @@ on:
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3

- name: Start containers
run: docker-compose -f "./docker/apache-verdaccio/docker-compose.yaml" up -d --build
run: docker compose -f "./docker/apache-verdaccio/docker-compose.yaml" up -d --build

- name: Install node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
Expand All @@ -33,4 +33,4 @@ jobs:

- name: Stop containers
if: always()
run: docker-compose -f "./docker/apache-verdaccio/docker-compose.yaml" down
run: docker compose -f "./docker/apache-verdaccio/docker-compose.yaml" down
8 changes: 4 additions & 4 deletions .github/workflows/docker-proxy-nginx-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Docker Proxy Nginx Test 6.x
name: E2E Docker Proxy Nginx Test

on:
workflow_dispatch:
Expand All @@ -10,14 +10,14 @@ on:
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3

- name: Start containers
run: docker-compose -f "./docker/proxy-nginx/docker-compose.yaml" up -d --build
run: docker compose -f "./docker/proxy-nginx/docker-compose.yaml" up -d --build

- name: Install node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
Expand All @@ -40,4 +40,4 @@ jobs:

- name: Stop containers
if: always()
run: docker-compose -f "./docker/proxy-nginx/docker-compose.yaml" down
run: docker compose -f "./docker/proxy-nginx/docker-compose.yaml" down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E CLI 6.x
name: E2E CLI

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-ui-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Docker UI Cypress 6.x
name: E2E Docker UI Cypress

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smok-test-docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker Smoke Test 6.x
name: Docker Smoke Test
on:
workflow_dispatch:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: install
run: pnpm install
- name: update to latest canary
run: cd tools/cli-commons && pnpm install verdaccio@canary-6x
run: cd tools/cli-commons && pnpm install verdaccio@canary-7x
- name: restore .npmrc
run: git checkout .npmrc
- name: Commit & Push changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# E2E CLI Testing for 6.x
# E2E CLI Testing for Master Branch

> For 5.x versions, check `5.x` branch
What is included on these test?

## With Cypress

- Test the UI fo latest 6.x branch docker image
- Test the UI fo latest master branch docker image

## With docker (docker compose)

Expand Down

0 comments on commit 7685031

Please sign in to comment.