Skip to content
This repository was archived by the owner on Jul 16, 2026. It is now read-only.

feat: add forcePathStyle config, default to true #64

feat: add forcePathStyle config, default to true

feat: add forcePathStyle config, default to true #64

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test