Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 4 additions & 18 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,17 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-go
uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: bufbuild/[email protected]
with:
version: 1.1.0
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cache
.cache
~/.tmp
.tmp
key: ${{ runner.os }}-protobuf-es-ci-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-protobuf-es-ci-
- name: make-ci-generate
run: bash make/scripts/checknodiffgenerated.bash make ci-generate
- name: make-format
run: bash make/scripts/checknodiffgenerated.bash make format
- name: make-build
run: make build
- name: make-lint
run: make lint
- name: make-test
run: make test
- name: make-bench-codesize
run: make bench-codesize
- name: make
run: make all checkdiff
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
node_modules
/packages/*/dist
/packages/protobuf-test/descriptorset.bin
/testdata/gen/**/*.js
/testdata/gen/**/*.ts
/testdata/gen/**/**.d.ts
/packages/protoc-gen-es*/bin/protoc-gen-es*
/packages/*/dist
/packages/protobuf-test/descriptorset.bin
/.cache
/.tmp
67 changes: 0 additions & 67 deletions .golangci.yaml

This file was deleted.

8 changes: 4 additions & 4 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/packages/*/src/gen
/packages/*/dist
/packages/*/bin
/node_modules
/.cache
/packages/*/bin
/packages/*/dist
/packages/*/src/gen
/packages/protobuf/src/google
/.tmp
Loading