Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

fix(utils): trim trailing whitespace from base URLs (resolves #530) #1601

fix(utils): trim trailing whitespace from base URLs (resolves #530)

fix(utils): trim trailing whitespace from base URLs (resolves #530) #1601

Workflow file for this run

name: ci
on: { push: { branches: [main] }, pull_request: { branches: [main] } }
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix: { node: [20, 22, 24] }
steps:
- uses: actions/checkout@v5
- run: corepack enable
- uses: actions/setup-node@v6
with: { node-version: "${{ matrix.node }}", cache: "pnpm" }
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm vitest --coverage
- uses: codecov/codecov-action@v5