⬆️ Bump supabase from 2.0.0-rc-1 to 2.0.0 #42
Workflow file for this run
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: "Backend CI" | |
on: | |
pull_request_target: | |
# Cancel any current or previous job from the same PR | |
concurrency: | |
group: backend-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: 'true' | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Unit Tests | |
run: ./gradlew :app:backend:check | |
- name: Build | |
run: ./gradlew :app:backend:buildFatJar |