Skip to content

build(deps): bump smol-toml from 1.6.0 to 1.6.1 (#82) #281

build(deps): bump smol-toml from 1.6.0 to 1.6.1 (#82)

build(deps): bump smol-toml from 1.6.0 to 1.6.1 (#82) #281

Workflow file for this run

name: CI
on:
push:
branches:
- main
- release/**
pull_request:
permissions:
contents: read
jobs:
check:
name: Lint, Typecheck, Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm test
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: Verify CLI runs
run: node dist/cli/index.js --help
- run: npm pack
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: npm-package
path: |
${{ github.workspace }}/*.tgz