Skip to content

fix: upgrade commander from 10.0.0 to 10.0.1 #26

fix: upgrade commander from 10.0.0 to 10.0.1

fix: upgrade commander from 10.0.0 to 10.0.1 #26

Workflow file for this run

name: Node CI
on:
- push
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: make install
- run: make lint
- run: make test
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true