Skip to content

Bump typescript from 5.6.2 to 5.6.3 #420

Bump typescript from 5.6.2 to 5.6.3

Bump typescript from 5.6.2 to 5.6.3 #420

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.tmp
.tmp
key: ${{ runner.os }}-connectrpc-ci-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-connectrpc-ci-
- name: Install dependencies
run: npm clean-install
- name: Run CI
run: npm run ci
- name: Check Diff
id: checkdiff
run: |
[[ -z $(git status --porcelain | tee /dev/stderr) ]] || exit 1