Skip to content

Bump @oclif/core from 4.10.2 to 4.11.4 #19

Bump @oclif/core from 4.10.2 to 4.11.4

Bump @oclif/core from 4.10.2 to 4.11.4 #19

Workflow file for this run

name: Build
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
- '.npmrc'
- '.prettierrc'
- '.prettierignore'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Verify code with ESLint
run: npm run lint:verify
- name: 'Verify formatting with Prettier'
run: npm run prettier:verify
- name: Build
run: npm run build
- name: Test
run: npm run test:coverage