Разбиение проверки ПР на шаги

This commit is contained in:
Nikolay
2020-12-28 21:18:50 +03:00
committed by GitHub
parent 5664469b55
commit 33cd679de3

View File

@ -23,6 +23,17 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# eslint - name: install dependencies
- name: lint check run: npm i
run: npm i && npm run lint && npm run test && npm run build
- name: eslint
run: npm run eslint
- name: tsc lint
run: npm run tsc
- name: tests
run: npm run test
- name: build
run: npm run build