Skip to content

Remove eslint/no-explicit-any and replace with proper types/interfaces #1487

Remove eslint/no-explicit-any and replace with proper types/interfaces

Remove eslint/no-explicit-any and replace with proper types/interfaces #1487

Workflow file for this run

name: Cypress
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
jobs:
cypress-run:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- run: yarn
- uses: cypress-io/github-action@v6
with:
install: false
command: yarn test:cypress