[Infrastructure] Add a github workflow to update NPM dependencies #16
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: update-npm-dependencies | |
on: | |
# Manual run | |
workflow_dispatch: | |
pull_request: | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
jobs: | |
update-npm-dependencies: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout aspnetcore repository | |
uses: actions/checkout@v4 | |
with: | |
repository: 'dotnet/aspnetcore' | |
ref: 'main' | |
path: 'main' | |
- name: Checkout Node-Externals repository | |
uses: actions/checkout@v4 | |
with: | |
repository: 'dotnet/Node-Externals' | |
ref: 'main' | |
path: 'node-externals' | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Run npm install to update package-lock.json | |
shell: pwsh | |
id: npm-install-script | |
run: echo $PWD; ./main/.github/workflows/update-npm-dependencies.ps1 | |
- name: Create PR to update the offline package cache | |
# if: steps.update-npm-dependencies.outputs.changes == 'true' | |
id: update-offline-package-cache | |
uses: dotnet/actions-create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: ./node-externals/ | |
commit-message: 'Update the NPM offline cache' | |
title: '[Infrastructure] Update the NPM offline cache' | |
body: 'Updates the npm offline cache to match the associated package-lock.json file in dotnet/aspnetcore.' | |
labels: 'Type: Dependency Update :arrow_up_small:' | |
base: main | |
branch: github-action/update-npm-dependencies | |
branch-suffix: timestamp | |
- name: Update offline-cache submodule | |
shell: pwsh | |
working-directory: ./main/ | |
run: | | |
./.github/workflows/update-submodule-commit.ps1 ${{ steps.update-offline-package-cache.outputs.pull-request-head-sha }} | |
- name: Create PR to update package-lock.json and the offline package cache submodule | |
# if: steps.update-npm-dependencies.outputs.changes == 'true' | |
uses: dotnet/actions-create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'Update npm dependencies and offline cache submodule' | |
path: ./main/ | |
title: '[Infrastructure] Update npm dependencies' | |
body: 'Updates the package-lock.json file and the offline package cache submodule to match it.' | |
labels: 'Type: Dependency Update :arrow_up_small:' | |
base: main | |
branch: github-action/update-npm-dependencies | |
branch-suffix: timestamp |