Skip to content

chore: publish

chore: publish #87

Workflow file for this run

name: build, test and lint
on:
pull_request:
types: [opened, synchronize]
jobs:
check:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
name: setup pnpm
with:
version: 9.11.0
run_install: false
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: install and prepare
run: pnpm i
- name: run test suites
run: pnpm test
- name: lint
run: pnpm lint:fix
- name: build docs
run: pnpm build:storybook