fix previous file rendering when current file is erroring out #1283
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: Lint Check | |
on: [push, pull_request_target] | |
jobs: | |
build: | |
name: Lint Run | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
node --version | |
yarn --version | |
- name: set @bitregistry translation-help | |
run: yarn config set '@bit:registry' https://node.bit.dev | |
- name: yarn install | |
run: yarn install | |
- name: run lint | |
run: yarn lint | |
- name: run lint-fix | |
run: yarn lint:fix |