Skip to content

feat: restore deleted frontend changes #145

feat: restore deleted frontend changes

feat: restore deleted frontend changes #145

Workflow file for this run

# This workflow will test a Java project with Maven and JUnit5, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 20
uses: actions/setup-java@v3
with:
java-version: '20'
distribution: 'corretto'
cache: maven
- name: Decrypt Firebase Secret
run: ./decrypt.sh
env:
FIREBASE_DECRYPTION_KEY: ${{ secrets.FIREBASE_DECRYPTION_KEY }}
- name: Test with Maven
run: mvn -B test --file pom.xml