Skip to content

fixed the issue with re-importing projects (#273) #917

fixed the issue with re-importing projects (#273)

fixed the issue with re-importing projects (#273) #917

Workflow file for this run

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