Skip to content

Bump cross-spawn from 7.0.3 to 7.0.5 #122

Bump cross-spawn from 7.0.3 to 7.0.5

Bump cross-spawn from 7.0.3 to 7.0.5 #122

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Quality checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn lint
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- run: yarn install
- run: yarn test