Skip to content

feat: warn ban function #35

feat: warn ban function

feat: warn ban function #35

Workflow file for this run

name: Test
on:
pull_request:
branches: [ "**" ]
paths-ignore:
- 'docs/**'
- '.gitignore'
- 'LICENSE'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm typecheck
- name: Build
run: pnpm build:ci
- name: Run tests
run: pnpm test