Skip to content

Commit

Permalink
ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed Dec 15, 2024
1 parent 0bc063b commit 3062d31
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.12, 3.3.1]
scala: [2.13.15, 3.3.4]
java: [temurin@17]
ci: [ciFirefox, ciChrome, ciJSDOMNodeJS]
runs-on: ${{ matrix.os }}
Expand All @@ -39,12 +39,15 @@ jobs:

- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Setup NodeJS v18 LTS
if: matrix.ci == 'ciJSDOMNodeJS'
uses: actions/setup-node@v3
Expand All @@ -68,7 +71,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.12]
scala: [2.13.15]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -79,10 +82,13 @@ jobs:

- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt

- name: Setup sbt
uses: sbt/setup-sbt@v1

- run: sbt -mem 5000 ci-release

0 comments on commit 3062d31

Please sign in to comment.