Bump @google-cloud/container from 5.11.0 to 5.14.0 in /gcp-gke-control-plane-auth-networks-updater #127
Workflow file for this run
This file contains 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: Test GCP GKE Control Plane Auth Networks Updater | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
permissions: | |
pull-requests: write | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
working-directory: gcp-gke-control-plane-auth-networks-updater | |
jobs: | |
test-and-build: | |
name: Test and build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: npm test | |
- name: Build action | |
id: build | |
run: | | |
npm run prepare | |
# We should ensure that the working directory does not include any | |
# uncommitted changes which would indicate that the commit was not | |
# properly prepared. | |
status=$(git status --porcelain) | |
if [ -n "$status" ]; then | |
echo "$status" | |
exit 1 | |
fi | |
- name: Notify if build is not fully committed | |
if: ${{ failure() && steps.build.outcome == 'failure' }} | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
await github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: "The current commit does not include an up-to-date build of the GCP GKE Control Plane Auth Networks Updater. Please run `npm run prepare` locally and commit all changes from the `dist` directory." | |
}) |