Better Module System #2088
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: "Build" | |
on: | |
push: | |
pull_request: | |
jobs: | |
# Job for checking yarn cache | |
check: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- run: yarn install --check-cache | |
working-directory: app-frontend | |
# Building backend | |
kotlin-build: | |
name: "Build on JDK 21" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "liberica" | |
- uses: gradle/actions/setup-gradle@v4 | |
- run: ./gradlew check installDist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "Backend Application" | |
path: "app-backend/build/install/" | |
retention-days: 1 | |
# Building frontend | |
react-build: | |
name: "Build on Node.JS 22.x" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- run: yarn install | |
working-directory: app-frontend | |
- run: yarn run build | |
working-directory: app-frontend | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "Frontend Application" | |
path: "app-frontend/dist/" | |
retention-days: 1 | |
# Building and pushing image | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
needs: [kotlin-build, react-build] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: "Backend Application" | |
path: "app-backend/build/install/" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: "Frontend Application" | |
path: "app-frontend/dist/" | |
- name: "Set up Docker Buildx" | |
uses: docker/setup-buildx-action@v3 | |
- name: "Login to GHCR" | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Build and push" | |
uses: docker/build-push-action@v6 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
context: . | |
tags: ghcr.io/heapy/awesome-kotlin:main-beta |