Skip to content

🔧(deps-dev): Bump eslint-config-next from 13.3.1 to 13.4.12 #184

🔧(deps-dev): Bump eslint-config-next from 13.3.1 to 13.4.12

🔧(deps-dev): Bump eslint-config-next from 13.3.1 to 13.4.12 #184

Workflow file for this run

name: Cypress Test
on:
pull_request:
branches:
- main
- beta
- alpha
push:
branches:
- main
- beta
- alpha
jobs:
cypress:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.yarn
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
~/.cache/Cypress
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --immutable
- name: Run tests with Cypress
run: |
yarn test:e2e
- name: Upload screenshots
uses: actions/upload-artifact@v2
with:
name: cypress-screenshots
path: templates/*/cypress/screenshots