ci: move e2e tests from travis to circleci (#27937)

PR Close #27937
This commit is contained in:
Paul Gschwendtner
2019-01-05 14:01:47 +01:00
committed by Kara Erickson
parent bb5ddee710
commit 7de7b7a16a
16 changed files with 252 additions and 297 deletions

View File

@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ts_library")
load("//tools:defaults.bzl", "npm_package", "ts_library")
ts_library(
name = "benchpress",
@ -18,3 +18,17 @@ ts_library(
"@ngdeps//reflect-metadata",
],
)
npm_package(
name = "npm_package",
srcs = [
"README.md",
"package.json",
],
# Do not add more to this list.
# Dependencies on the full npm_package cause long re-builds.
visibility = ["//visibility:private"],
deps = [
":benchpress",
],
)