Merge pull request #76 from enormora/renovate/typescript-5.x #746
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: Continuous Integration Workflow | |
on: [push, pull_request] | |
jobs: | |
install: | |
name: Install Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
compile: | |
name: Typescript compilation | |
runs-on: ubuntu-latest | |
needs: ['install'] | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: Compile | |
run: 'npm run compile' | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts | |
path: target/build/**/* | |
static-code-analysis: | |
name: Static Code Analysis | |
runs-on: ubuntu-latest | |
needs: ['install'] | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: Run linters | |
run: 'npm run lint' | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: ['compile', 'static-code-analysis'] | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build-artifacts | |
path: target/build | |
- name: Run unit tests | |
run: 'unshare --map-root-user -n npm run test:unit:with-coverage' | |
integration-tests: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
needs: ['compile', 'static-code-analysis'] | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build-artifacts | |
path: target/build | |
- name: Run integration tests | |
run: 'npm run test:integration' |