From d35e3ce0d053c86728b768c157689bd83b378922 Mon Sep 17 00:00:00 2001 From: phips28 Date: Wed, 22 Sep 2021 17:12:20 +0200 Subject: [PATCH] disable end to end test --- .github/workflows/pull-request.disabled_yml | 20 ++++++++++++++++++++ .github/workflows/pull-request.yml | 20 -------------------- 2 files changed, 20 insertions(+), 20 deletions(-) create mode 100644 .github/workflows/pull-request.disabled_yml delete mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.disabled_yml b/.github/workflows/pull-request.disabled_yml new file mode 100644 index 0000000..2d894bf --- /dev/null +++ b/.github/workflows/pull-request.disabled_yml @@ -0,0 +1,20 @@ +name: Confirm Pull Request + +on: + pull_request: + +concurrency: end-to-end-test + +jobs: + end-to-end-tests: + name: Conduct end-to-end tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: npm ci + name: Install dependencies + - run: npm run end-to-end-test + env: + TEST_REPO: ${{ secrets.TEST_REPO }} + TEST_USER: ${{ secrets.TEST_USER }} + TEST_TOKEN: ${{ secrets.TEST_TOKEN }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml deleted file mode 100644 index 7bac529..0000000 --- a/.github/workflows/pull-request.yml +++ /dev/null @@ -1,20 +0,0 @@ -#name: Confirm Pull Request -# -#on: -# pull_request: -# -#concurrency: end-to-end-test -# -#jobs: -# end-to-end-tests: -# name: Conduct end-to-end tests -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v2 -# - run: npm ci -# name: Install dependencies -# - run: npm run end-to-end-test -# env: -# TEST_REPO: ${{ secrets.TEST_REPO }} -# TEST_USER: ${{ secrets.TEST_USER }} -# TEST_TOKEN: ${{ secrets.TEST_TOKEN }}