Skip to content

Merge pull request #139 from samelawrence/codespace-samelawrence-caut… #165

Merge pull request #139 from samelawrence/codespace-samelawrence-caut…

Merge pull request #139 from samelawrence/codespace-samelawrence-caut… #165

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: [ 14.x, 16.x ]
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