Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Sep 22, 2023
1 parent 00c7282 commit 9585d6d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ jobs:
test:
uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v2
with:
folders: '[".", "e2e/smoke"]'

folders: '[".", "e2e/eslint", "e2e/proto"]'
13 changes: 9 additions & 4 deletions lint/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -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"],
)

0 comments on commit 9585d6d

Please sign in to comment.