CI-CD: added working directories #3
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/CD with Render | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# Backend | |
- name: Install backend dependencies | |
working-directory: ./backend | |
run: npm install | |
- name: Run backend tests | |
working-directory: ./backend | |
run: npm test | |
- name: Trigger deploy Backend to Render | |
uses: JorgeLNJunior/render-deploy@v1.4.4 | |
if: success() | |
with: | |
service_id: ${{ secrets.RENDER_BACKEND_SERVICE }} | |
api_key: ${{ secrets.RENDER_TOKEN }} | |
# Frontend | |
- name: Install backend dependencies | |
working-directory: ./backend | |
run: npm install | |
- name: Run backend tests | |
working-directory: ./backend | |
run: npm test | |
- name: Trigger deploy Frontend to Render | |
uses: JorgeLNJunior/render-deploy@v1.4.4 | |
if: success() | |
with: | |
service_id: ${{ secrets.RENDER_FRONTEND_SERVICE }} | |
api_key: ${{ secrets.RENDER_TOKEN }} | |
# Mobile | |
- name: Setup java | |
if: success() | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: "12.x" | |
cache: 'gradle' | |
- name: Set up Flutter | |
if: success() | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
- name: Get flutter app dependencies | |
if: success() | |
working-directory: ./frontend/mobile | |
run: flutter pub get | |
- name: Start Android release build | |
if: success() | |
working-directory: ./frontend/mobile | |
run: flutter build --dart-define PUBLIC_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }} --dart-define BACKEND_BASE_URL=https://walkaware.onrender.com --dart-define "JWT_SECRET=${{ secrets.JWT_SECRET }}" |