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

Bump @babel/cli from 7.19.3 to 7.22.15 (#164) #290

Bump @babel/cli from 7.19.3 to 7.22.15 (#164)

Bump @babel/cli from 7.19.3 to 7.22.15 (#164) #290

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