Skip to content

Commit 65e81b0

Browse files
committed
github workflow fix
1 parent 43352c2 commit 65e81b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656
- name: Check that workflows are up to date
5757
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
5858

59-
- run: sbt ++${{ matrix.scala }} test website/fastLinkJS
59+
- name: Build project
60+
run: sbt ++${{ matrix.scala }} test
6061

6162
- name: Compress target directories
6263
run: tar cf targets.tar target stringdiff/.jvm/target stringdiff/.js/target project/target

build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ inThisBuild(
1717
githubWorkflowTargetTags ++= Seq("v*"),
1818
githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))),
1919
githubWorkflowPublish := Seq(WorkflowStep.Sbt(List("ci-release"))),
20-
githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("test", "website/fastLinkJS"))),
2120
githubWorkflowEnv ~= (_ ++ Map(
2221
"PGP_PASSPHRASE" -> s"$${{ secrets.PGP_PASSPHRASE }}",
2322
"PGP_SECRET" -> s"$${{ secrets.PGP_SECRET }}",

0 commit comments

Comments
 (0)