From 491b34baadd92d3588fb0c1cc69d565c38c005fc Mon Sep 17 00:00:00 2001 From: Soubhik Kumar Gon Date: Tue, 5 Mar 2024 05:09:47 +0530 Subject: [PATCH] chore(ci): adds core build ci for feathers app --- .github/workflows/check_core_build.yml | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/check_core_build.yml diff --git a/.github/workflows/check_core_build.yml b/.github/workflows/check_core_build.yml new file mode 100644 index 0000000..e7022a0 --- /dev/null +++ b/.github/workflows/check_core_build.yml @@ -0,0 +1,34 @@ +name: Test Build - Core Server + +on: + push: + branches: + - main + - ci + 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 add + + - name: build server + run: | + yarn compile +