Skip to content

fix(worker): Fix import error when using pkg with node v20 (#144) #409

fix(worker): Fix import error when using pkg with node v20 (#144)

fix(worker): Fix import error when using pkg with node v20 (#144) #409

name: package-manager-ci
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
pnpm:
name: pnpm package manager on ${{ matrix.node-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14, 16, 18]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Use pnpm
uses: pnpm/action-setup@v3.0.0
with:
version: ^6.0.0
- name: Install dependancies
run: pnpm install
- name: Tests
shell: bash
run: pnpm run test:ci
yarn-pnp:
name: yarn-pnp package manager on ${{ matrix.node-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14, 16, 18]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Use yarn
run: |
npm install -g yarn
yarn set version berry
cat test/yarnrc.yml >> .yarnrc.yml
yarn add -D pino-elasticsearch@^6.0.0
yarn install
env:
# needed due the yarn.lock file in repository's .gitignore
YARN_ENABLE_IMMUTABLE_INSTALLS: 'false'
- name: Tests
shell: bash
run: yarn run test:yarn
env:
SKIP_PROCESS_EXIT_CHECK: 'true'