eslint fixes #86
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: Frontend Build | |
on: | |
push: | |
branches: | |
- main # Adjust this branch name to your needs | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 # Adjust the Node.js version as needed | |
- name: Install Dependencies | |
working-directory: src-frontend-react | |
run: npm install | |
- name: Install Prisma Client | |
run: npx prisma generate | |
- name: Build Frontend | |
working-directory: src-frontend-react | |
run: npm run build | |
- name: Commit and Push Build Files | |
run: | | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git add src-frontend-react/build | |
git commit -m "Add frontend build files" | |
git push |