Render section content with markdown renderer #1378
This file contains hidden or 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: Test & Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: EgorDm/gha-yarn-node-cache@v1 | |
- name: Install dependencies | |
run: yarn install --prod | |
- name: Build | |
run: yarn build | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: EgorDm/gha-yarn-node-cache@v1 | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: EgorDm/gha-yarn-node-cache@v1 | |
- name: Install dependencies | |
run: yarn install | |
- name: Lint | |
run: yarn run eslint --format .config/eslint/annotations_formatter.js src/ |