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 }}