Skip to content

feat: user client entry #177

feat: user client entry

feat: user client entry #177

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: '20'
corepack-enable: true
registry-url: 'https://registry.npmjs.org'
- name: Deps
run: |
npm i -g corepack@latest
corepack enable
pnpm i --frozen-lockfile
- name: Test
run: pnpm test:ci