Revert "fix typo" #2919
Workflow file for this run
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: test and build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Build | |
run: ./gradlew clean build | |
build-evcs-stub: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Install | |
working-directory: ./di-ipv-evcs-stub/lambdas | |
run: npm ci | |
- name: Build | |
working-directory: ./di-ipv-evcs-stub/lambdas | |
run: npm run build | |
- name: Test | |
working-directory: ./di-ipv-evcs-stub/lambdas | |
run: npm run test | |
build-ticf-stub: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Install | |
working-directory: ./di-ipv-ticf-stub/lambdas | |
run: npm ci | |
- name: Build | |
working-directory: ./di-ipv-ticf-stub/lambdas | |
run: npm run build | |
- name: Test | |
working-directory: ./di-ipv-ticf-stub/lambdas | |
run: npm run test |