Skip to content

Merge branch 'extend-options-type' #17

Merge branch 'extend-options-type'

Merge branch 'extend-options-type' #17

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile --ignore-scripts
- name: Build package
run: pnpm run build
- name: Test
run: pnpm run test
- name: Lint
run: pnpm lint