-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (35 loc) · 1.13 KB
/
ci-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: CI/CD
on:
push:
branches:
- main
- beta
- renovate/**
pull_request: null
jobs:
lint-commit-messages:
uses: vidavidorra/.github/.github/workflows/lint-commit-messages.yml@7f0550f97c1ae2aacb4070f5d08e07559ffb6438 # v4.2.6
lint:
uses: vidavidorra/.github/.github/workflows/node-lint.yml@7f0550f97c1ae2aacb4070f5d08e07559ffb6438 # v4.2.6
build:
uses: vidavidorra/.github/.github/workflows/node-build.yml@7f0550f97c1ae2aacb4070f5d08e07559ffb6438 # v4.2.6
test:
uses: vidavidorra/.github/.github/workflows/node-test.yml@7f0550f97c1ae2aacb4070f5d08e07559ffb6438 # v4.2.6
code-coverage:
uses: vidavidorra/.github/.github/workflows/node-test-coverage.yml@7f0550f97c1ae2aacb4070f5d08e07559ffb6438 # v4.2.6
needs:
- lint
- build
- test
secrets:
codecovToken: ${{ secrets.CODECOV_TOKEN }}
release:
uses: vidavidorra/.github/.github/workflows/release.yml@7f0550f97c1ae2aacb4070f5d08e07559ffb6438 # v4.2.6
needs:
- lint-commit-messages
- lint
- build
- test
- code-coverage
secrets:
privateKey: ${{ secrets.RELEASE_PRIVATE_KEY }}