Skip to content

Reduce installation size #9

Reduce installation size

Reduce installation size #9

Workflow file for this run

on:
pull_request:
push:
branches:
- master
- fork-release
name: Test
jobs:
test:
name: ${{ matrix.os }} on node ${{ matrix.node }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node:
- 14
- 16
- 18
- 20
- 22
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn --immutable
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "patch-package"
- run: yarn test