Skip to content

Bump @oclif/core from 1.9.3 to 3.10.8 #213

Bump @oclif/core from 1.9.3 to 3.10.8

Bump @oclif/core from 1.9.3 to 3.10.8 #213

Workflow file for this run

name: Jest
on: push
jobs:
test:
runs-on: ubuntu-latest
env:
PUPPETEER_SKIP_DOWNLOAD: true
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "16"
# Speed up subsequent runs with caching
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
# Install required deps for action
- name: Install Dependencies
run: npm install
# Lint the code
- name: Lint
run: npm run lint
# Finally, run our tests
- name: Run the tests
run: npm test
coverage:
needs: [ test ]
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "16"
- run: npm install
- uses: paambaati/codeclimate-action@v3.0.0
env:
CC_TEST_REPORTER_ID: 7f8014791bb2bd91ef64fa4772ab409b1504e87047711934e37aefc105b0c4b5
with:
coverageCommand: npm test