Skip to content

fix: Updated lit signature logic #147

fix: Updated lit signature logic

fix: Updated lit signature logic #147

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
env:
NODE_OPTIONS: "--max-old-space-size=7680" # 8 GB - 512 MB for OS
run: npm run build