Skip to content

refactor: omit bunPath from extractPackageApiEffect options #888

refactor: omit bunPath from extractPackageApiEffect options

refactor: omit bunPath from extractPackageApiEffect options #888

Workflow file for this run

name: CI for main branch
on:
push:
branches:
- "main"
jobs:
# See https://stackoverflow.com/a/73624365/16109047
build:
runs-on: ubuntu-latest
if: github.repository == 'jsdocs-io/extractor' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "pnpm"
- name: Setup bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test:ci
- name: Build
run: pnpm build
- name: Are the types wrong
run: pnpm attw
- name: CodeCov
uses: codecov/codecov-action@v4.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}