Trying to figure out what's breaking an OLC check #136
Workflow file for this run
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
# AUTOGENERATED by workflow-preprocessor.js from ../.github/workflow-templates/pr-actions.yml | |
name: Lint and Unit Test | |
'on': | |
- pull_request | |
jobs: | |
lint_and_unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: '▶️ Setup checkout: ' | |
- name: "\U0001F53D Start setup [changed-files]" | |
run: echo "Setting something up" | |
- name: Get All Changed Files | |
uses: jaredly/[email protected] | |
id: changed | |
with: | |
format: json | |
absolute: true | |
- uses: allenevans/[email protected] | |
with: | |
ALL_CHANGED_FILES: '${{ steps.changed.outputs.added_modified }}' | |
- name: "\U0001F53C Finished setup [changed-files]" | |
run: echo "Finished setting it up" | |
- run: yarn | |
name: '▶️ Setup yarn: ' | |
- name: Run eslint | |
uses: Khan/eslint-action@main | |
with: | |
eslint-lib: ./node_modules/eslint | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Run jest tests | |
uses: Khan/jest-action@main | |
with: | |
jest-bin: ./node_modules/.bin/jest | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Run jest coverage | |
uses: Khan/jest-coverage-action@main | |
with: | |
jest-bin: ./node_modules/.bin/jest | |
coverage-data-path: ./coverage/coverage-final.json | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Run flow | |
uses: Khan/flow-action@main | |
with: | |
flow-bin: ./node_modules/.bin/flow | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Run flow coverage | |
uses: Khan/flow-coverage-action@main | |
with: | |
flow-bin: ./node_modules/.bin/flow | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' |