chore(deps-dev): bump typescript from 6.0.3 to 7.0.2 in /panel/web #54
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| compose-config: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: validate docker-compose.yml | |
| run: docker compose -f docker-compose.yml config -q | |
| - name: validate prod profile | |
| run: COMPOSE_PROFILES=prod docker compose -f docker-compose.yml config -q | |
| backend-tests: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: install panel-api deps | |
| working-directory: panel/api | |
| run: pip install -e ".[test]" | |
| - name: pytest | |
| working-directory: panel/api | |
| run: pytest -q | |
| frontend-build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "26" | |
| - name: install + build | |
| working-directory: panel/web | |
| run: | | |
| npm install | |
| npm run build |