Skip to content

feat: Provide access to dsSearch #26

feat: Provide access to dsSearch

feat: Provide access to dsSearch #26

Workflow file for this run

name: pr-next
on:
push:
branches: [next]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Setup pnpm 📦
uses: pnpm/action-setup@v4
with:
version: 9.7.1
- name: Install dependencies 📦
run: pnpm install
- name: Run linter 👀
run: pnpm run lint-fix
- name: Run tests 🧪
run: pnpm run test:unit
- name: Build
run: pnpm run build