Skip to content

Begin build workflow with linter #1

Begin build workflow with linter

Begin build workflow with linter #1

Workflow file for this run

name: Build dRAGon Project
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout dRAGon sources
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Lint Frontend
run: gradle npmLint
build:
runs-on: ubuntu-latest
needs: [lint]
steps:
- name: Checkout dRAGon sources
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build dRAGon
run: gradle build