Skip to content

chore: align repo conventions (#350) #4

chore: align repo conventions (#350)

chore: align repo conventions (#350) #4

Workflow file for this run

name: Build
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install Dependencies with Legacy Peer Deps
run: npm install --legacy-peer-deps
working-directory: ./client
- name: Build Project with OpenSSL Legacy Provider
run: |
export NODE_OPTIONS=--openssl-legacy-provider
npm run build
working-directory: ./client