chore: Set node to v15 (#6) #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
print-env-data: | |
runs-on: ubuntu-latest | |
name: Fetch Shipyard Vars | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Integrate Shipyard | |
uses: shipyard/[email protected] | |
with: | |
api-token: ${{ secrets.SHIPYARD_API_TOKEN }} | |
timeout-minutes: "10" | |
- name: Print Env Data | |
run: | | |
export CYPRESS_BASE_URL=${SHIPYARD_ENVIRONMENT_URL} | |
export CYPRESS_BYPASS_TOKEN=${SHIPYARD_BYPASS_TOKEN} | |
env | grep -e SHIPYARD -e CYPRESS | |
shell: bash |