Merge pull request #219 from GeoWerkstatt/dependabot/npm_and_yarn/src… #348
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: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
name: Build and run tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start db | |
run: docker compose up -d db | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# Run the npm ci command before building | |
# the dotnet project, because the project | |
# itself calls npm install if the node_modules | |
# folder does not exist. | |
- working-directory: ./src/ClientApp | |
run: npm ci | |
- run: dotnet build ModelRepoBrowser.sln /warnaserror | |
- run: dotnet test ModelRepoBrowser.sln --no-build --verbosity normal | |
- working-directory: ./src/ClientApp | |
run: npm run build --if-present | |
- working-directory: ./src/ClientApp | |
run: npm run lint | |
- working-directory: ./src/ClientApp | |
run: npm test |