Bump postcss and @angular-devkit/build-angular in /frontend #239
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build-backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-build-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven-build- | |
- name: Build with Maven | |
run: mvn clean install -DskipTests package --file ./backend/pom.xml | |
lint-backend: | |
needs: build-backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-lint-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven-lint- | |
- name: Lint Java Code | |
run: mvn checkstyle:checkstyle -Pcode-analysis --file ./backend/pom.xml | |
analyse-backend: | |
needs: build-backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-analyse-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven-analyse- | |
- name: Analyse Java Code for bugs | |
run: mvn install -DskipTests --file ./backend/pom.xml && mvn spotbugs:check -Pcode-analysis --file ./backend/pom.xml | |
test-unit-backend: | |
needs: [lint-backend, analyse-backend] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-test-unit-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven-test-unit- | |
- name: Run unit tests with Maven | |
run: mvn clean test --file ./backend/pom.xml | |
test-integration-backend: | |
needs: test-unit-backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-test-integration-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven-test-integration- | |
- name: Run integration tests with Maven | |
run: mvn clean verify -Dsurefire.skip=true --file ./backend/pom.xml | |
package-backend: | |
needs: test-integration-backend | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image for the backend | |
uses: ./.github/actions/build-docker-image | |
with: | |
context: ./backend | |
tag: alex-backend | |
lint-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint TypeScript code | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: cd ./frontend && npm ci && npm run lint | |
test-unit-frontend: | |
needs: lint-frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Angular unit tests | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: cd ./frontend && npm ci && npm run test -- --no-watch --no-progress --browsers=ChromeHeadlessCI | |
package-frontend: | |
needs: test-unit-frontend | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image for the frontend | |
uses: ./.github/actions/build-docker-image | |
with: | |
context: ./frontend | |
tag: alex-frontend | |
lint-cli: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint CI TypeScript code | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: cd ./cli && npm ci && npm run lint | |
package-cli: | |
needs: lint-cli | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image for the CLI | |
uses: ./.github/actions/build-docker-image | |
with: | |
context: ./cli | |
tag: alex-cli | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build docs | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: cd ./docs && npm install -g npm && npm ci && npm run build | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: docs | |
path: ./docs/.vuepress/dist/ | |
package-docs: | |
needs: build-docs | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image for the docs | |
uses: ./.github/actions/build-docker-image | |
with: | |
context: ./docs | |
tag: alex-docs | |
release-images: | |
needs: | |
- package-frontend | |
- package-backend | |
- package-cli | |
- package-docs | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Release frontend | |
uses: ./.github/actions/release-docker-image | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.CR_PAT }} | |
image: alex-frontend | |
- name: Release backend | |
uses: ./.github/actions/release-docker-image | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.CR_PAT }} | |
image: alex-backend | |
- name: Release CLI | |
uses: ./.github/actions/release-docker-image | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.CR_PAT }} | |
image: alex-cli | |
- name: Release docs | |
uses: ./.github/actions/release-docker-image | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.CR_PAT }} | |
image: alex-docs | |
release-packages: | |
needs: | |
- package-frontend | |
- package-backend | |
- package-cli | |
- package-docs | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Set up cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.m2 | |
!~/.m2/repository/de/learnlib/alex | |
key: cache-deploy-${{ hashFiles('backend/**/pom.xml') }} | |
restore-keys: cache-deploy- | |
- name: Run Maven | |
env: # make secrets available as environment variables | |
OSSRH_TOKEN_USERNAME: ${{ secrets.OSSRH_TOKEN_USERNAME }} | |
OSSRH_TOKEN_PASSWORD: ${{ secrets.OSSRH_TOKEN_PASSWORD }} | |
run: cd backend && mvn -B -s $GITHUB_WORKSPACE/.github/settings.xml install deploy -DskipTests | |
pages: | |
needs: | |
- package-frontend | |
- package-backend | |
- package-cli | |
- package-docs | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Create book directory | |
run: cd website && mkdir book | |
- name: Download docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: docs | |
path: ./website/book | |
- name: Publish pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: website |