Add test coverage for packed and packedByDefault properties of DescFi… #1590
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: [main] | |
tags: ['v*'] | |
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@v3 | |
with: | |
path: | | |
~/.tmp | |
.tmp | |
key: ${{ runner.os }}-protobuf-es-ci-${{ hashFiles('Makefile') }} | |
restore-keys: | | |
${{ runner.os }}-protobuf-es-ci- | |
- name: make | |
run: make ci | |
typescript-compat: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.tmp | |
.tmp | |
key: ${{ runner.os }}-protobuf-es-typescript-compat-${{ hashFiles('Makefile') }} | |
restore-keys: | | |
${{ runner.os }}-protobuf-es-typescript-compat- | |
- name: make | |
run: make test-ts-compat |