Skip to content

Add support for Cypress 13 #167

Add support for Cypress 13

Add support for Cypress 13 #167

Workflow file for this run

name: Build and test cypress-drag-drop
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16, 18 ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci