Skip to content

Commit

Permalink
build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherDavenport committed Sep 13, 2022
1 parent 1c5b859 commit d0091ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -9,9 +9,9 @@ name: Continuous Integration

on:
pull_request:
branches: ['**']
branches: ['**', '!update/**', '!pr/**']
push:
branches: ['**']
branches: ['**', '!update/**', '!pr/**']
tags: [v*]

env:
Expand Down Expand Up @@ -81,10 +81,6 @@ jobs:
- name: Test
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' test

- name: Check binary compatibility
if: matrix.java == 'temurin@8'
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' mimaReportBinaryIssues

- name: Generate API documentation
if: matrix.java == 'temurin@8'
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' doc
Expand Down
3 changes: 3 additions & 0 deletions build.sbt
Expand Up @@ -42,6 +42,7 @@ ThisBuild / githubWorkflowPublishPreamble ++= Seq(
)
)


ThisBuild / githubWorkflowPublish ++= Seq(
WorkflowStep.Sbt(
List("coreJS/npmPackageNpmrc", "npmPackagePublish"),
Expand All @@ -53,6 +54,8 @@ ThisBuild / githubWorkflowPublish ++= Seq(
)
)

ThisBuild / tlCiMimaBinaryIssueCheck := false

val catsV = "2.7.0"
val catsEffectV = "3.3.12"
val fs2V = "3.2.7"
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
@@ -1,6 +1,6 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.4.9")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.9")
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.4.9")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.4.13")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.13")
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.4.13")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
addSbtPlugin("io.chrisdavenport" % "sbt-npm-package" % "0.1.1")

0 comments on commit d0091ff

Please sign in to comment.