diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd2636f..ebe9bcc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: contents: read strategy: matrix: - node-version: [14, 16, 18] + node-version: [14, 16, 18, 20] os: [macos-latest, ubuntu-latest, windows-latest] exclude: - os: windows-latest diff --git a/.github/workflows/package-manager-ci.yml b/.github/workflows/package-manager-ci.yml index ede382e..f3c550a 100644 --- a/.github/workflows/package-manager-ci.yml +++ b/.github/workflows/package-manager-ci.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14, 16, 18] + node-version: [18, 20] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -31,32 +31,3 @@ jobs: - 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'