npm: bump lodash.template from 4.5.0 to 4.18.1 #10630
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: Continuous Integration | |
| env: | |
| CLOUDSDK_PYTHON: python3.13 | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| python_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| - name: set up Java JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: pre-installation | |
| run: | | |
| # Remove existing google-cloud-sdk packages in Ubuntu. | |
| sudo rm -rf /usr/lib/google-cloud-sdk | |
| curl https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-497.0.0-linux-x86_64.tar.gz | tar -zx > /dev/null | |
| # Substitute the downloaded google-cloud-sdk packages, due to https://stackoverflow.com/questions/42697026/install-google-cloud-components-error-from-gcloud-command. | |
| sudo mv google-cloud-sdk /usr/lib/ | |
| sudo gcloud components update | |
| sudo gcloud components install app-engine-python beta cloud-datastore-emulator app-engine-python-extras | |
| gcloud config set project cr-status-staging | |
| gcloud version | |
| - name: installation | |
| run: | | |
| npm config set script-shell bash --global | |
| make setup | |
| - name: lint | |
| run: make lint | |
| - name: mypy | |
| run: make mypy | |
| - name: test | |
| run: npm test | |
| - name: build | |
| run: make build |