diff --git a/.github/workflows/ui-test-deploy-dev.yml b/.github/workflows/ui-test-deploy-dev.yml index d938a17..a8eee6b 100644 --- a/.github/workflows/ui-test-deploy-dev.yml +++ b/.github/workflows/ui-test-deploy-dev.yml @@ -17,6 +17,15 @@ env: NODE_VERSION: '14.x' jobs: + debug_github_ref: + name: Debug GitHub ref + runs-on: ubuntu-latest + steps: + - name: GitHub ref + run: | + echo "GITHUB_REF: $GITHUB_REF" + echo "github.ref: ${{ github.ref }}" + test: name: Cypress tests (UI) if: ${{ github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/main' }}