File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1+ # file: .github/workflows/my_first_workflow.yml
2+ name : CI - APP
3+ # on – определяет события, которые запускают воркфлоу
4+ on : push
5+ jobs :
6+ # build – произвольно выбранное имя задания
7+ # их может быть больше одного
8+ build :
9+ # операционная система для работы воркфлоу
10+ runs-on : ubuntu-latest
11+ steps :
12+
13+ - name : Checkout repository
14+ uses : actions/checkout@v2
15+
16+ - name : Set up Node.js
17+ uses : actions/setup-node@v2
18+ with :
19+ node-version : ' 14'
20+
21+ - name : Install dependencies and build
22+ run : make setup
23+
24+ - name : Run linter
25+ run : make lint
26+
27+ - name : Run tests
28+ run : make test
Original file line number Diff line number Diff line change 1- setup : install build
1+ setup :
2+ install build
23
34install :
45 npm install
You can’t perform that action at this time.
0 commit comments