@@ -392,13 +392,33 @@ jobs:
392392 - name : Report MiMa issues in `tasty-core-bootstrapped`
393393 run : ./project/scripts/sbt tasty-core-bootstrapped-new/mimaReportBinaryIssues
394394
395+ mima-scala-library-sjs :
396+ runs-on : ubuntu-latest
397+ needs : scala-library-sjs
398+ steps :
399+ - name : Git Checkout
400+ uses : actions/checkout@v5
401+
402+ - name : Set up JDK 17
403+ uses : actions/setup-java@v5
404+ with :
405+ distribution : ' temurin'
406+ java-version : 17
407+ cache : ' sbt'
408+
409+ - uses : sbt/setup-sbt@v1
410+ - name : Report MiMa issues in `scala-library-sjs`
411+ run : ./project/scripts/sbt scala-library-sjs/mimaReportBinaryIssues
412+
395413 # ################################################################################################
396414 # ########################################## TEST JOBS ###########################################
397415 # ################################################################################################
398416
399417 test-scala3-compiler-nonbootstrapped :
400418 runs-on : ubuntu-latest
401419 needs : [scala3-compiler-nonbootstrapped, tasty-core-nonbootstrapped, scala-library-nonbootstrapped]
420+ # Non-bootstrapped can definetely not be enabled until we have at least 3.8.0-RC1 as a reference compiler
421+ if : false
402422 steps :
403423 - name : Git Checkout
404424 uses : actions/checkout@v5
@@ -497,3 +517,20 @@ jobs:
497517 - uses : sbt/setup-sbt@v1
498518 - name : Test `tasty-core-bootstrapped`
499519 run : ./project/scripts/sbt tasty-core-bootstrapped-new/test
520+
521+ test-scala-js :
522+ runs-on : ubuntu-latest
523+ needs : [scala3-compiler-bootstrapped, tasty-core-bootstrapped, scala3-staging, scala3-tasty-inspector, scala-library-sjs]
524+ steps :
525+ - name : Git Checkout
526+ uses : actions/checkout@v5
527+
528+ - name : Set up JDK 17
529+ uses : actions/setup-java@v5
530+ with :
531+ distribution : ' temurin'
532+ java-version : 17
533+ cache : ' sbt'
534+ - uses : sbt/setup-sbt@v1
535+ - name : Test Scala.js
536+ run : ./project/scripts/sbt sjsCompilerTests/test
0 commit comments