Skip to content

Merge pull request #143 from jonkoops/cypress-13 #170

Merge pull request #143 from jonkoops/cypress-13

Merge pull request #143 from jonkoops/cypress-13 #170

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 ]
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