Develop #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Studio Server Build Workflow | |
on: | |
pull_request: | |
jobs: | |
build-studio-server: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout into repo | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Install Packages | |
run: npm i | |
working-directory: server | |
- name: Build Server | |
run: npm run build | |
working-directory: server |