Skip to content

build(deps): Bump semver from 5.7.1 to 5.7.2 #11493

build(deps): Bump semver from 5.7.1 to 5.7.2

build(deps): Bump semver from 5.7.1 to 5.7.2 #11493

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: on ${{ matrix.os }} (${{ matrix.shard }})
strategy:
matrix:
os: [
ubuntu-latest,
# windows-latest,
# macos-latest
]
shard: ['1/2', '2/2']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.16.0
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Get number of CPU cores
id: cpu-cores
uses: SimenB/github-actions-cpu-cores@v1
- name: Test
run: yarn jest --max-workers=${{ steps.cpu-cores.outputs.count }} --shard=${{ matrix.shard }}