This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
Deactivate nightly builds #15880
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: Check Modified Assets | |
on: | |
pull_request: | |
jobs: | |
build-trunk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: trunk | |
- name: Cache node_modules | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Setup node version and npm cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Node dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: npm install --no-optional --no-audit | |
- name: Build Assets | |
run: npm run build:check-assets | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
name: assets-list | |
path: ./build/assets.json | |
compare-assets-with-trunk: | |
needs: [ build-trunk ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache node_modules | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Setup node version and npm cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Build Assets | |
run: npm run build:check-assets | |
- name: Download assets (trunk) | |
uses: actions/download-artifact@v3 | |
with: | |
name: assets-list | |
path: assets-list | |
- name: Compare Assets | |
uses: ./.github/compare-assets | |
id: compare-assets | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
compare: assets-list/assets.json | |
create-comment: false | |
- name: Append report | |
uses: ./.github/comments-aggregator | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
section-id: compare-assets-with-trunk | |
content: ${{steps.compare-assets.outputs.comment}} |