Use fastLinkJS / fullLinkJS #111
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coursier/cache-action@v5 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: adopt:11 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- name: Setup yarn | |
run: npm install -g [email protected] | |
- name: Unit tests | |
run: sbt test | |
- name: Scripted tests | |
run: sbt scripted | |
- name: Build the manual | |
run: sbt manual/makeSite |