Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

fix(build-core): adds script to fix types in node-modules as a tempor… #9

fix(build-core): adds script to fix types in node-modules as a tempor…

fix(build-core): adds script to fix types in node-modules as a tempor… #9

name: Test Build - Core Server
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.11.1
- name: install packages
run: |
cd core/
npm i -g yarn@latest
yarn install
- name: fix package type error (temp solution)
run: |
cd scripts/
chmod u+rwx nmfix.sh
./nmfix
- name: build server
run: |
cd ../core
yarn compile