Skip to content

Bump @types/node from 22.5.0 to 22.7.3 #1179

Bump @types/node from 22.5.0 to 22.7.3

Bump @types/node from 22.5.0 to 22.7.3 #1179

Workflow file for this run

name: PR to main
on:
pull_request:
branches:
- main
jobs:
pr_main:
name: PR to main
runs-on: ubuntu-latest
if: ${{ github.event.sender.login != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
- run: node -p "'version=' + require('./package.json').version" >> $GITHUB_OUTPUT
id: base-version
- uses: actions/checkout@v4
- run: node -p "'version=' + require('./package.json').version" >> $GITHUB_OUTPUT
id: new-version
- uses: madhead/semver-utils@latest
id: comparison
with:
version: ${{ steps.new-version.outputs.version }}
compare-to: ${{ steps.base-version.outputs.version }}
- run: '[[ ">" == "${{ steps.comparison.outputs.comparison-result }}" ]]'