Cache dependencies and archive builds in all workflows #12694
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
# Copyright 2023 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Check Changeset | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
GITHUB_PULL_REQUEST_HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
GITHUB_PULL_REQUEST_BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
jobs: | |
check_changeset: | |
name: Check changeset vs changed files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so check_changeset script can diff properly. | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
cache-dependency-path: yarn.lock | |
- name: Restore cached node_modules | |
uses: actions/cache@v4 | |
id: node_modules | |
with: | |
path: "**/node_modules" | |
key: node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- run: yarn install --frozen-lockfile | |
- name: Run changeset script | |
# pull main so changeset can diff against it | |
run: | | |
git pull -f --no-rebase origin main:main | |
yarn ts-node-script scripts/ci/check_changeset.ts | |
id: check-changeset | |
- name: Print changeset checker output | |
run: | | |
cat << 'eof_delimiter_that_will_never_occur_in_CHANGESET_ERROR_MESSAGE' | |
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}} | |
eof_delimiter_that_will_never_occur_in_CHANGESET_ERROR_MESSAGE | |
- name: Print blocking failure status | |
run: echo "${{steps.check-changeset.outputs.BLOCKING_FAILURE}}" | |
- name: Find Comment | |
uses: peter-evans/find-comment@v3 | |
id: fc | |
with: | |
issue-number: ${{github.event.number}} | |
body-includes: Changeset File Check | |
- name: Create comment (missing packages) | |
if: ${{!steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}} | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{github.event.number}} | |
body: | | |
### Changeset File Check :warning: | |
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}} | |
- name: Update comment (missing packages) | |
if: ${{steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}} | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
comment-id: ${{steps.fc.outputs.comment-id}} | |
edit-mode: replace | |
body: | | |
### Changeset File Check :warning: | |
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}} | |
- name: Update comment (no missing packages) | |
if: ${{steps.fc.outputs.comment-id && !steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}} | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
comment-id: ${{steps.fc.outputs.comment-id}} | |
edit-mode: replace | |
body: | | |
### Changeset File Check :white_check_mark: | |
- No modified packages are missing from the changeset file. | |
- No changeset formatting errors detected. | |
# Don't want it to throw before editing the comment. | |
- name: Fail if checker script logged a blocking failure | |
if: ${{steps.check-changeset.outputs.BLOCKING_FAILURE == 'true'}} | |
run: exit 1 |