[Snyk] Security upgrade org.slf4j:slf4j-log4j12 from 1.7.7 to 1.7.34 #15
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: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint-markdown: | |
name: Lint Markdown | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Run Remark Markdown Linter | |
run: | | |
npm install | |
npm run lint:md | |
- name: Run Textlint Markdown Linter | |
run: npm run lint:text | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Use Java 8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
- name: 'Unit Tests with Java 8' | |
run: | | |
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Padd-dependencies-for-IDEA > install.log | |
mvn verify -Padd-dependencies-for-IDEA | |
mvn clean test -Dtest=*Test cobertura:cobertura coveralls:report -Padd-dependencies-for-IDEA -DrepoToken="${COVERALLS_TOKEN}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} |