Merge pull request #122 from uiuc-wece/maya-testing #262
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: deploy website | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: check out repo | |
uses: actions/checkout@v2 | |
- name: use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: server - NPM install | |
working-directory: ./api | |
run: | | |
npm install --force --legacy-peer-deps | |
echo "Server - NPM install completed successfully" | |
- name: client - NPM install | |
working-directory: ./client | |
run: | | |
npm install | |
echo "Client - NPM install completed successfully" | |
- name: client - NPM build | |
working-directory: ./client | |
run: npm run build --if-present | |
- name: Vercel Action | |
uses: amondnet/[email protected]+4 | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
vercel-args: "--prod --debug" # Add --debug flag for debugging | |
vercel-org-id: ${{ secrets.ORG_ID }} | |
vercel-project-id: ${{ secrets.PROJECT_ID }} | |
working-directory: ./ |