Skip to content

Improve OTP flow

Improve OTP flow #18

Workflow file for this run

name: CI workflow
on:
pull_request:
branches: ['dev', 'main']
paths-ignore:
- '*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install deps
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Lint FSD
run: pnpm lint:fsd
- name: Format
run: pnpm format:check
- name: Typecheck
run: pnpm typecheck
- name: Unit tests
run: pnpm test:ci
- name: Build
run: pnpm build
# - name: Build Storybook
# run: pnpm build-storybook