Skip to content

Bump the ts-proto group in /impl/ts-proto with 4 updates #509

Bump the ts-proto group in /impl/ts-proto with 4 updates

Bump the ts-proto group in /impl/ts-proto with 4 updates #509

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
workflow_dispatch:
# Prevent writing to the repository using the CI token.
# Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
permissions: read-all
jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install
run: npm ci
- name: Run tests and create report
run: npm test
- name: Update license headers
run: npm run license-header
- name: Format
run: npm run format
- name: Check Diff
run: |
[[ -z $(git status --porcelain | tee /dev/stderr) ]] || exit 1