File tree Expand file tree Collapse file tree 6 files changed +10
-72
lines changed Expand file tree Collapse file tree 6 files changed +10
-72
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- on :
2
- workflow_call :
3
-
4
- jobs :
5
- install_dependencies :
6
- name : Installing yarn dependencies of the project
7
- runs-on : ubuntu-latest
8
- steps :
9
- - name : Install yarn dependencies
10
- run : |
11
- cd template
12
- yarn install
1
+ name : Install dependencies
2
+ description : Install dependencies on the project under template/
3
+ runs :
4
+ using : composite
5
+ steps :
6
+ - run : cd template && yarn install
7
+ shell : bash
Original file line number Diff line number Diff line change 7
7
- template/**/*
8
8
9
9
jobs :
10
- run_lint_1 :
11
- runs-on : ubuntu-latest
12
- steps :
13
- - uses : actions/checkout@v2
14
- - uses : ./.github/actions/run-linters
10
+ run_lint :
11
+ uses : ./.github/workflows/w-run-linters.yml
15
12
run_test :
16
13
if : ${{ success() }}
17
- runs-on : ubuntu-latest
18
- steps :
19
- - uses : actions/checkout@v2
20
- - uses : ./.github/actions/run-tests
14
+ uses : ./.github/workflows/w-run-tests.yml
21
15
needs : [ run_lint ]
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments