Skip to content

chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 #21

chore(deps): bump cross-spawn from 7.0.3 to 7.0.6

chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 #21

Workflow file for this run

name: Check all
on:
pull_request:
jobs:
check-all:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
run: yarn --immutable
- name: Check Lint
run: yarn lint
- name: Build
run: yarn build
- name: Check types
run: yarn types
- name: Tests
run: yarn test