Skip to content

Commit

Permalink
chore(ci): adds core build ci for feathers app
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhaev26 committed Mar 4, 2024
1 parent 112537e commit 491b34b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/check_core_build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 491b34b

Please sign in to comment.