Skip to content

feat: add import signing key flow in onboarding #6

feat: add import signing key flow in onboarding

feat: add import signing key flow in onboarding #6

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
web:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.0.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format check
run: pnpm run format:check
- name: Lint
run: pnpm run lint
- name: Unit tests
run: pnpm run test -- --run
- name: Build
run: pnpm run build