init #1
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: CI | |
on: | |
push: | |
branches: | |
- main | |
# Delete this line | |
- 39-setup-github-actions-for-repo | |
jobs: | |
build-client: | |
name: Build React Client | |
runs-on: [self-hosted] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Dependencies and Build Client | |
run: | | |
node --version | |
ls | |
pwd | |
# start-server: | |
# name: Start Express Server | |
# runs-on: [self-hosted] | |
# | |
# steps: | |
# - name: Checkout Repository | |
# uses: actions/checkout@v2 | |
# | |
# - name: Install Dependencies and Start Server | |
# run: | | |
# npm install | |
# npm start |