Skip to content

Commit 1071ce6

Browse files
committed
(CI): workflow from dev
1 parent 3a0765c commit 1071ce6

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/ci-develop-next-main.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ on:
88

99
jobs:
1010
run_lint:
11-
uses: ./.github/workflows/w-run-linters.yml
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: ./.github/workflows/w-run-linters.yml
1215
run_test:
1316
if: ${{ success() }}
14-
uses: ./.github/workflows/w-run-tests.yml
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: ./.github/workflows/w-run-tests.yml
1521
needs: [ run_lint ]

.github/workflows/w-install-dependencies.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ jobs:
66
name: Installing yarn dependencies of the project
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
109
- name: Install yarn dependencies
1110
run: |
1211
cd template

0 commit comments

Comments
 (0)