Skip to content

fix: upgrade framer-motion from 10.16.16 to 10.17.9 (#85) #568

fix: upgrade framer-motion from 10.16.16 to 10.17.9 (#85)

fix: upgrade framer-motion from 10.16.16 to 10.17.9 (#85) #568

Workflow file for this run

name: e2e
# https://docs.github.com/en/actions/reference/events-that-trigger-workflows
on: [push, deployment, deployment_status]
# Cancel previously running jobs
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
e2e:
# only runs this job on successful deploy
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success'
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
# Cache node_modules
- name: Cache node_modules
id: cache-yarn
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
# Install dependencies only when yarn.lock changes
- name: Install dependencies
if: steps.cache-yarn.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
# Run Cypress
- name: Run Cypress 🌲
uses: cypress-io/github-action@v5
with:
install: false
env:
CYPRESS_BASE_URL: ${{ github.event.deployment_status.target_url }}