chore(deps): update dependency prism-react-renderer to v2.4.1 (#99) #303
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 | |
- workflow_dispatch | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: danysk/[email protected] | |
- uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: [email protected] | |
- name: Run compile | |
run: sbt compile | |
- name: Run test | |
run: sbt test | |
- name: Run BDD | |
run: sbt cucumber | |