Skip to content

Bump typescript from 4.9.5 to 5.7.3 #756

Bump typescript from 4.9.5 to 5.7.3

Bump typescript from 4.9.5 to 5.7.3 #756

Workflow file for this run

name: Build the action
on:
pull_request:
workflow_dispatch:
# Declare default GITHUB_TOKEN permissions as read only.
permissions: read-all
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Compile with NPM
run: |
npm ci
npm run all
dependency-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 'Dependency Review'
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0
update-dist:
runs-on: ubuntu-latest
needs: [build, dependency-check]
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Compile with NPM
run: |
npm ci
npm run all
- name: Commit changes if any
run: |
if [ -z "$(git status --porcelain)" ]; then
echo "Found changes to commit"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add dist/
git commit -m "Update dist folder"
git push
fi