File tree 3 files changed +22
-22
lines changed
3 files changed +22
-22
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
push :
6
6
branches :
7
- - main
7
+ - main
8
8
9
9
jobs :
10
10
install_deps :
11
11
name : Install dependencies
12
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_install_deps.yml@v3 .0.0
12
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_install_deps.yml@v4 .0.0
13
13
with :
14
14
PNPM_FLAGS : --recursive
15
15
16
16
run_checks :
17
17
name : Run code checks
18
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v3 .0.0
18
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v4 .0.0
19
19
needs :
20
- - install_deps
20
+ - install_deps
21
21
with :
22
22
PNPM_FLAGS : --recursive
23
23
24
24
run_unit_tests :
25
25
name : Run unit tests
26
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_unit_tests.yml@v3 .0.0
26
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_unit_tests.yml@v4 .0.0
27
27
needs :
28
- - install_deps
28
+ - install_deps
29
29
with :
30
30
PNPM_FLAGS : --recursive
31
31
COVERAGE_FILENAME : reports/vitest/coverage/cobertura-coverage.xml
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
install_deps :
10
10
name : Install dependencies
11
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_install_deps.yml@v3 .0.0
11
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_install_deps.yml@v4 .0.0
12
12
13
13
run_checks :
14
14
name : Run code checks
15
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v3 .0.0
15
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v4 .0.0
16
16
needs :
17
- - install_deps
17
+ - install_deps
18
18
19
19
run_unit_tests :
20
20
name : Run unit tests
21
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_unit_tests.yml@v3 .0.0
21
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_unit_tests.yml@v4 .0.0
22
22
needs :
23
- - install_deps
23
+ - install_deps
24
24
with :
25
25
COVERAGE_FILENAME : reports/vitest/coverage/cobertura-coverage.xml
26
26
COVERAGE_FAIL_BELOW_MIN : 100
Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
push :
6
6
tags :
7
- - v*
7
+ - v*
8
8
9
9
jobs :
10
10
install_deps :
11
11
name : Install dependencies
12
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_install_deps.yml@v3 .0.0
12
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_install_deps.yml@v4 .0.0
13
13
14
14
run_checks :
15
15
name : Run code checks
16
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v3 .0.0
16
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v4 .0.0
17
17
needs :
18
- - install_deps
18
+ - install_deps
19
19
20
20
run_unit_tests :
21
21
name : Run unit tests
22
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_unit_tests.yml@v3 .0.0
22
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_run_unit_tests.yml@v4 .0.0
23
23
needs :
24
- - install_deps
24
+ - install_deps
25
25
with :
26
26
COVERAGE_FILENAME : reports/vitest/coverage/cobertura-coverage.xml
27
27
COVERAGE_FAIL_BELOW_MIN : 100
28
28
29
29
build :
30
30
name : Build artifact
31
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_build.yml@v3 .0.0
31
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_build.yml@v4 .0.0
32
32
needs :
33
- - run_checks
34
- - run_unit_tests
33
+ - run_checks
34
+ - run_unit_tests
35
35
36
36
publish :
37
37
name : Publish artifact
38
- uses : spuxx1701/ci-cd/.github/workflows/pnpm_publish.yml@v3 .0.0
38
+ uses : spuxx1701/ci-cd/.github/workflows/pnpm_publish.yml@v4 .0.0
39
39
needs :
40
- - build
40
+ - build
41
41
secrets :
42
42
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments