Update sbt-scalajs, scalajs-compiler, ... to 1.14.0 (#471) #803
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches-ignore: | |
- "gh-pages" | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
branches-ignore: | |
- "gh-pages" | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
java: | |
- [email protected] | |
- graalvm-ce-java11@21 | |
- [email protected] | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
fail-fast: false | |
steps: | |
- name: Configure git | |
run: "git config --global core.autocrlf false" | |
shell: bash | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 300 | |
- name: Fetch tags | |
run: git fetch --depth=300 origin +refs/tags/*:refs/tags/* | |
- uses: coursier/[email protected] | |
- uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: ${{matrix.java}} | |
- name: Compile, test and check binary compatibility | |
run: "sbt -batch clean +test +mimaReportBinaryIssues" | |
shell: bash |