Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Bump @babel/core from 7.20.5 to 7.22.17 #299

Bump @babel/core from 7.20.5 to 7.22.17

Bump @babel/core from 7.20.5 to 7.22.17 #299

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm run lint
- run: npm run type-check
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
cypress-version: ["11", "12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm install --save=false cypress@${{ matrix.cypress-version }}
- run: npm test