Ajouter nom et prénom de la personne qui a réglé une amende - PR pour l'issue #216 #364
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: "Check Typescript" | |
on: | |
pull_request: ~ | |
jobs: | |
check-typescript: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
resource: ["soz-core", "soz-phone"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: "resources/[soz]/${{ matrix.resource }}" | |
- name: "check-typescript" | |
working-directory: "resources/[soz]/${{ matrix.resource }}" | |
run: yarn run tsc -p tsconfig.json --noEmit |