Skip to content

Bump @types/node from 20.3.2 to 20.3.3 in /impl/baseline #237

Bump @types/node from 20.3.2 to 20.3.3 in /impl/baseline

Bump @types/node from 20.3.2 to 20.3.3 in /impl/baseline #237

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@v3
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.tmp
.tmp
key: ${{ runner.os }}-protobuf-es-ci-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-protobuf-es-ci-
- name: make
run: make all checkdiff