Skip to content

Bump oclif from 3.9.1 to 4.0.3 #201

Bump oclif from 3.9.1 to 4.0.3

Bump oclif from 3.9.1 to 4.0.3 #201

Workflow file for this run

name: Compilation & Unit Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Compile TypeScript
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- run: yarn
- run: yarn compile
test:
runs-on: ubuntu-latest
name: Run linters
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn
- run: yarn test
readme:
name: Assert README.md is up-to-date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn
- run: yarn compile
- run: yarn generate:readme
- run: git diff --exit-code README.md