diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d8a91b7..711ec9b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -7,10 +7,17 @@ on: jobs: pr: + name: pr (${{ matrix.name }}) strategy: fail-fast: false matrix: - os: [ubuntu-22.04, macos-13, windows-2022] + include: + - name: ubuntu-22.04 + os: ubuntu-22.04 + - name: macos-13 + os: macos-14 + - name: windows-2022 + os: windows-2022 runs-on: ${{ matrix.os == 'macos-13' && 'macos-15' || matrix.os }} timeout-minutes: 15 steps: diff --git a/scripts/update-dependencies.sh b/scripts/update-dependencies.sh index 4176a60..5d479bc 100644 --- a/scripts/update-dependencies.sh +++ b/scripts/update-dependencies.sh @@ -16,7 +16,7 @@ fi function updateDependencies { echo "updating dependencies..." - OUTPUT=`ncu -u -x @types/node -x lerna` + OUTPUT=`ncu -u -x @types/node -x lerna -x typescript` SUB='All dependencies match the latest package versions' if [[ "$OUTPUT" == *"$SUB"* ]]; then echo "$OUTPUT"