Bump @types/node from 20.9.0 to 20.11.29 (#585) #171
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 dist | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update-dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Build | |
shell: bash -l {0} | |
run: | | |
npm ci | |
test "$OSTYPE" != "msys" || npm run format | |
npm run all | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: Update dist | |
author: GitHub <[email protected]> | |
delete-branch: true | |
title: Update dist | |
- name: Check Pull Request | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |