File tree Expand file tree Collapse file tree 3 files changed +29
-30
lines changed Expand file tree Collapse file tree 3 files changed +29
-30
lines changed Original file line number Diff line number Diff line change
1
+ name : Nightly
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ schedule :
7
+ - cron : ' 0 2 * * *' # run at 2 AM UTC
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ scalabranch : ["2.11.x", "2.12.x", "2.13.x"]
15
+ scalajsbranch : ["master"]
16
+ env :
17
+ SCALA_BRANCH : " ${{ matrix.scalabranch }}"
18
+ SCALAJS_BRANCH : " master"
19
+ steps :
20
+ - uses : actions/checkout@v2
21
+ - uses : olafurpg/setup-scala@v10
22
+ with :
23
+
24
+ - uses : coursier/cache-action@v5
25
+ - name : Node.js version
26
+ run : node -v
27
+ - name : Test
28
+ run : ./run.sh "${{ matrix.scalabranch }}" "${{ matrix.scalajsbranch }}"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Testing Scala.js against the nightly builds of Scala
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /scala-js/scala-js-test-scala-nightly. svg?branch=master )] ( https://travis-ci.org /scala-js/scala-js-test-scala-nightly )
3
+ [ ![ Build Status] ( https://github.com /scala-js/scala-js-test-scala-nightly/actions/workflows/nightly.yml/badge. svg )] ( https://github.com /scala-js/scala-js-test-scala-nightly/actions )
4
4
5
5
This repository runs nightly tests of Scala.js against the nightly builds of Scala.
You can’t perform that action at this time.
0 commit comments