feat: add APIs to easily test the Pino logger (#1) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: package-manager-ci | |
on: | |
push: | |
branches: | |
- main | |
- package-manager-load | |
permissions: | |
contents: read | |
jobs: | |
pnpm: | |
name: pnpm package manager on ${{ matrix.node-version }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: ^8.0.0 | |
- name: Install dependancies | |
run: pnpm install | |
- name: Tests | |
run: pnpm run test-ci-pnpm | |
yarn: | |
name: yarn package manager on ${{ matrix.node-version }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use yarn | |
run: | | |
yarn set version berry && yarn set version 2 | |
echo "nodeLinker: node-modules" >> .yarnrc.yml | |
# see https://github.com/yarnpkg/berry/issues/2935#issuecomment-911299992 | |
yarn add --dev typescript@~4.3.2 | |
yarn install | |
env: | |
# needed due the yarn.lock file in pino's .gitignore | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- name: Tests | |
run: yarn run test-ci | |
yarn-pnp: | |
name: yarn-pnp package manager on ${{ matrix.node-version }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use yarn | |
run: | | |
yarn set version berry | |
echo 'nodeLinker: pnp | |
packageExtensions: | |
debug@*: | |
dependencies: | |
supports-color: "*" | |
treport@*: | |
dependencies: | |
tap-yaml: "*" | |
' >> .yarnrc.yml | |
yarn add --dev typescript@~5.4.2 | |
yarn install | |
- name: Tests | |
run: yarn run test-ci-yarn-pnp |