build(deps): bump tar from 7.5.3 to 7.5.7 #2577
Workflow file for this run
This file contains hidden or 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: Node.js CI | |
| on: | |
| pull_request: | |
| merge_group: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| container: quay.io/geoengine/devcontainer:latest | |
| strategy: | |
| matrix: | |
| app: | |
| - gis | |
| - manager | |
| - dashboards/gfbio | |
| - dashboards/data-atlas | |
| - dashboards/nfdi-portal-demo | |
| - dashboards/ebv-analyzer | |
| - dashboards/ecometrics | |
| - dashboards/esg-indicator-service | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Dependencies | |
| run: | | |
| npm ci | |
| - name: Build app ${{ matrix.app }} | |
| run: npm run build-prod:${{ matrix.app }} | |
| env: | |
| CI: true | |
| test: | |
| runs-on: ubuntu-24.04 | |
| container: quay.io/geoengine/devcontainer:latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Dependencies | |
| run: | | |
| npm ci | |
| npx playwright install --with-deps --only-shell chromium | |
| - run: npm run test:browser:ci | |
| env: | |
| CI: true | |
| codestyle: | |
| name: Code Format and Lints | |
| runs-on: ubuntu-24.04 | |
| container: quay.io/geoengine/devcontainer:latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Code Format Check with Prettier | |
| run: npm run prettier -- --check . | |
| - name: Build common & core | |
| run: | | |
| npm run build:common | |
| npm run build:core | |
| - name: Check with Linter | |
| run: npm run lint |