Skip to content

Convert VESTS to SP display in recent activity history rows. #103

Convert VESTS to SP display in recent activity history rows.

Convert VESTS to SP display in recent activity history rows. #103

Workflow file for this run

name: CI
on:
push:
branches: [master, next]
pull_request:
branches: [master, next]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm type-check
- name: Lint
run: pnpm lint .
- name: Unit tests
run: pnpm test
- name: Coverage
run: pnpm test:coverage
- name: Build
run: pnpm build
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps chromium
- name: Run E2E tests
run: pnpm e2e
env:
CI: true