Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TEST] Gslux 734 test legends 2 #182

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ VITE_GET_INFO_SERVICE_URL="/getfeatureinfo"

# Paths for symbols
VITE_SYMBOL_ICONS_URL="/mymaps"
VITE_SYMBOLS_URL="/mymaps/symbols"
VITE_SYMBOLS_URL="/mymaps/symbols" # all symbols
VITE_SYMBOL_URL="/mymaps/symbol" # query one symbol
VITE_SYMBOL_UPLOAD_URL="/mymaps/upload_symbol"

# Urls for vectortiles
VITE_VECTORTILES_URL="https://vectortiles.geoportail.lu"
Expand Down
6 changes: 4 additions & 2 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ VITE_GET_METADATA_URL="https://migration.geoportail.lu/getMetadata"
VITE_GET_INFO_SERVICE_URL="https://migration.geoportail.lu/getfeatureinfo"

# Paths for symbols
VITE_SYMBOL_ICONS_URL="https://map.geoportail.lu/mymaps" # !!! use prod because of CORS
VITE_SYMBOLS_URL="https://map.geoportail.lu/mymaps/symbols" # !!! use prod because of CORS
VITE_SYMBOL_ICONS_URL="http://localhost:8080/mymaps" # !!! use prod because of CORS
VITE_SYMBOLS_URL="http://localhost:8080/mymaps/symbols" # !!! use prod because of CORS
VITE_SYMBOL_URL="http://localhost:8080/mymaps/symbol" # query one symbol
VITE_SYMBOL_UPLOAD_URL="http://localhost:8080/mymaps/upload_symbol"

# Urls for vectortiles
VITE_VECTORTILES_URL="https://vectortiles.geoportail.lu"
Expand Down
2 changes: 2 additions & 0 deletions .env.e2e
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ VITE_GET_INFO_SERVICE_URL="https://migration.geoportail.lu/getfeatureinfo"
# Paths for symbols
VITE_SYMBOL_ICONS_URL="https://map.geoportail.lu/mymaps" # !!! use prod because of CORS
VITE_SYMBOLS_URL="https://map.geoportail.lu/mymaps/symbols" # !!! use prod because of CORS
VITE_SYMBOL_URL="https://map.geoportail.lu/mymaps/symbol" # query one symbol
VITE_SYMBOL_UPLOAD_URL="https://map.geoportail.lu/mymaps/upload_symbol"

# Urls for vectortiles
VITE_VECTORTILES_URL="https://vectortiles.geoportail.lu"
Expand Down
2 changes: 2 additions & 0 deletions .env.staging
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ VITE_GET_INFO_SERVICE_URL="https://migration.geoportail.lu/getfeatureinfo"
# Paths for symbols
VITE_SYMBOL_ICONS_URL="https://migration.geoportail.lu/mymaps"
VITE_SYMBOLS_URL="https://migration.geoportail.lu/mymaps/symbols"
VITE_SYMBOL_URL="https://migration.geoportail.lu/mymaps/symbol" # query one symbol
VITE_SYMBOL_UPLOAD_URL="http://migration.geoportail.lu/mymaps/upload_symbol"

# Urls for vectortiles
VITE_VECTORTILES_URL="https://vectortiles-staging.geoportail.lu"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 22
cache: 'npm'
- run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
tag_name: ${{ github.ref_type == 'tag' && github.ref || env.AUTO_TAG }}
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 22
cache: 'npm'
- name: Build and pack prod library
shell: bash
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/lint-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,21 @@ on:
jobs:
build-lint-test:
runs-on: ubuntu-latest
env:
TERM: ansi
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run type-check
# - run: npm run lint
# - run: npm run type-check
- run: npm run build-only -- --mode=e2e
- run: npm run test:unit:ci
# - run: npm run test:unit:ci
- run: npm run test:e2e:ci
- run: npm run coverage-report
# - run: npm run coverage-report
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
# . "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
# npx lint-staged
134 changes: 0 additions & 134 deletions cypress/e2e/auth/auth.cy.ts

This file was deleted.

128 changes: 0 additions & 128 deletions cypress/e2e/background-selection.cy.ts

This file was deleted.

Loading
Loading