Skip to content

Safe support to claim a hypercert #50

Safe support to claim a hypercert

Safe support to claim a hypercert #50

Workflow file for this run

name: Build and Test Frontend
on:
pull_request:
branches: [ dev, main, release ]
push:
branches: [ dev, main, release ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: '9.2.0'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test
- name: Build frontend
run: pnpm build
- name: Run lint
run: pnpm lint