Bump @babel/traverse from 7.20.10 to 7.23.2 in /website #218
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: Scala CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Run elastic-search | |
run: docker run -d -p 9200:9200 -e discovery.type=single-node elasticsearch:7.1.0 | |
- name: Run tests | |
env: | |
ES_PORT: 9200 | |
run: sbt +test | |
- name: Check documentation builds | |
run: sbt docs/mdoc |