Support new React Interface #6
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
# Run CI checks for frontend code | |
name: Frontend CI | |
on: ["push", "pull_request"] | |
jobs: | |
frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- name: Install Deps | |
run: | | |
cd src/frontend | |
npm install | |
- name: Build Frontend | |
run: | | |
cd src/frontend | |
npm run build |