diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3dfa0511..534f9466 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,5 +19,4 @@ jobs: test: uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v2 with: - folders: '[".", "e2e/smoke"]' - + folders: '[".", "e2e/eslint", "e2e/proto"]' diff --git a/lint/BUILD.bazel b/lint/BUILD.bazel index d1e1c657..503e4802 100644 --- a/lint/BUILD.bazel +++ b/lint/BUILD.bazel @@ -1,10 +1,15 @@ load("@bazel_skylib//:bzl_library.bzl", "bzl_library") -# For stardoc to reference the files -exports_files(["defs.bzl"]) +bzl_library( + name = "buf", + srcs = ["buf.bzl"], + visibility = ["//visibility:public"], + deps = ["@rules_proto//proto:defs"], +) bzl_library( - name = "defs", - srcs = ["defs.bzl"], + name = "eslint", + srcs = ["eslint.bzl"], visibility = ["//visibility:public"], + deps = ["@aspect_bazel_lib//lib:copy_to_bin"], )