Skip to content

chore(doc): doc updated with recent project feature #129

chore(doc): doc updated with recent project feature

chore(doc): doc updated with recent project feature #129

Workflow file for this run

name: PR Check
on:
pull_request:
branches:
- main
jobs:
build:
name: Build playground
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: NPM Install
run: npm install
- name: NPM Build
run: SERVER_ROOT=https://playground.accordproject.org && NODE_OPTIONS=--max_old_space_size=8192 npm run build