Do you have other Github actions (Lighthouse, Cypress, etc) that depend on the Netlify deploy URL? This action will wait until the deploy URL is available before running the next task.
This action uses the Netlify API to always retrieve the correct deployment being built. You will need to generate a Personal Access Token to use and pass it as the NETLIFY_TOKEN
environment variable.
Required. Your Netlify Personal Access Token to use for API access. This should be set as a GitHub secret, see example.
Required The API ID of your site. See Settings > Site Details > General in the Netlify UI
Optional — The amount of time to spend waiting on the Netlify deployment to respond with a success HTTP code after reaching "ready" status. Defaults to 60 seconds.
Optional — The Netlify deploy context. Can be branch-deploy
, production
or deploy-preview
. Defaults to all of them.
The Netlify deploy preview url that was deployed.
The Netlify deployment ID that was deployed.
Basic Usage
steps:
- name: Wait for Netlify Deploy
uses: probablyup/[email protected]
id: waitForDeployment
with:
site_id: 'YOUR_SITE_ID' # See Settings > Site Details > General in the Netlify UI
env:
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
# Then use it in a later step like:
# ${{ steps.waitForDeployment.outputs.url }}
Complete example with Cypress
name: Cypress
on: pull_request
jobs:
integration:
runs-on: ubuntu-latest
jobs:
cypress:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci
- name: Wait for Netlify
uses: probablyup/[email protected]
id: waitForDeployment
with:
site_id: '[your site ID here]'
env:
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
- name: Run Cypress
uses: cypress-io/github-action@v2
with:
record: true
config: baseUrl=${{ steps.waitForDeployment.outputs.url }}
env:
# pass the Dashboard record key as an environment variable
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# this is automatically set by GitHub
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Complete example with Lighthouse
name: Lighthouse
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install
run: |
npm ci
- name: Build
run: |
npm run build
- name: Waiting for 200 from Netlify
uses: probablyup/[email protected]
id: waitForNetlifyDeploy
with:
site_id: 'YOUR_SITE_ID' # See Settings > Site Details > General in the Netlify UI
env:
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
- name: Lighthouse CI
run: |
npm install -g @lhci/[email protected]
lhci autorun --upload.target=temporary-public-storage --collect.url=${{ steps.waitForNetlifyDeploy.outputs.url }} || echo "LHCI failed!"
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}