Skip to content

chore(deps-dev): bump oclif from 3.17.2 to 4.4.18 #644

chore(deps-dev): bump oclif from 3.17.2 to 4.4.18

chore(deps-dev): bump oclif from 3.17.2 to 4.4.18 #644

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
merge_group:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: rm package-lock.json
- run: npm i --package-lock --package-lock-only --legacy-peer-deps
- run: npm ci --legacy-peer-deps
- run: npm run build --if-present
- run: npm test
- name: run tests
run: |
./bin/run --help
./bin/run plugins --core
./bin/run config --help
./bin/run console --help
./bin/run runtime --help
- name: upload coverage
if: success()
uses: codecov/[email protected]
with:
name: ${{ runner.os }} node.js ${{ matrix.node-version }}