updated github workflows to test new example

This commit is contained in:
Anton Tranelis 2025-02-18 16:18:40 +00:00
parent 028789f003
commit 0b4730a838
2 changed files with 15 additions and 1 deletions

View File

@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
app: [examples/1-basic-map, examples/2-static-layers] # Aktualisierte Pfade der Beispiel-Apps
app: [examples/1-basic-map, examples/2-static-layers, examples/3-tags ]
steps:
- name: Checkout Repository

View File

@ -60,6 +60,20 @@ jobs:
run: npm install && npm run lint
working-directory: ./examples/2-static-layers
lint-example-3-tags:
if: needs.files-changed.outputs.lint == 'true'
name: Lint Example 3 - Tags
needs: files-changed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.0.3
with:
node-version-file: './.tool-versions'
- name: Lint
run: npm install && npm run lint
working-directory: ./examples/3-tags
# unit:
# if: needs.files-changed.outputs.frontend == 'true'
# name: Unit - Frontend