Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
cancel-in-progress: true

jobs:
check:
backend:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand All @@ -29,3 +29,22 @@ jobs:
cache: gradle
- name: Gradle check
run: ./gradlew check

frontend:
runs-on: ubuntu-latest
timeout-minutes: 30
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v7
- name: Set up Node.js 8
uses: actions/setup-node@v4
with:
# Angular 4 / @angular/cli 1.4 (the frontend's stack) needs the Node 8
# ABI; node-sass 4.14 ships a prebuilt binary only for this line.
node-version: '8.17.0'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
Loading
Loading