Bump @wix/stores from 1.0.131 to 1.0.147 #42
Workflow file for this run
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
name: Netlify E2E | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
inputs: | |
deploymentUrl: | |
description: 'The deployment URL to test with' | |
required: true | |
prNumber: | |
description: 'Pull request number (optional)' | |
required: false | |
jobs: | |
netlify-e2e: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- uses: ./.github/actions/setup-playwright | |
- name: Waiting for 200 from the Netlify Preview | |
if: ${{ !github.event.inputs.deploymentUrl }} | |
uses: jakepartusch/[email protected] | |
id: waitFor200 | |
with: | |
site_name: "wix-commerce-ticketing-nextjs-templat" # TODO: change to your site name | |
max_timeout: 120 # 2 Minutes, depends on your build pipeline duration | |
- name: Set Run with URL | |
run: | | |
echo "DEPLOYMENT_URL=${{ github.event.inputs.deploymentUrl || steps.waitFor200.outputs.url }}" >> $GITHUB_ENV | |
- uses: ./.github/actions/run-playwright | |
id: runPlaywright | |
with: | |
provider: 'netlify' | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
prNumber: ${{ github.event.inputs.prNumber || github.event.pull_request.number }} | |
provider-deployment-url: ${{ env.DEPLOYMENT_URL }} |