generated from vidavidorra/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (41 loc) · 1.39 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
36
37
38
39
40
41
name: CI/CD
on:
push:
branches:
- main
- beta
- 'renovate/**'
- 'github-renovate/**'
pull_request: null
jobs:
lint-commit-messages:
uses: vidavidorra/.github/.github/workflows/lint-commit-messages.yml@4b508a0410daf6bb50cf30d6971fe3b1e56355c6 # v4.2.39
lint:
uses: vidavidorra/.github/.github/workflows/node-lint.yml@4b508a0410daf6bb50cf30d6971fe3b1e56355c6 # v4.2.39
build:
uses: vidavidorra/.github/.github/workflows/node-build.yml@4b508a0410daf6bb50cf30d6971fe3b1e56355c6 # v4.2.39
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Setup node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
- name: Test
uses: renovatebot/github-action@e1db501385ddcccbaae6fb9c06befae04f379f23 # v40.2.10
with:
configurationFile: .github/renovate-global.json
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: debug
RENOVATE_DRY_RUN: full
RENOVATE_REPOSITORIES: '["vidavidorra/renovate"]'
release:
needs:
- lint-commit-messages
- lint
- build
- test
uses: vidavidorra/.github/.github/workflows/release.yml@4b508a0410daf6bb50cf30d6971fe3b1e56355c6 # v4.2.39
secrets:
privateKey: ${{ secrets.RELEASE_PRIVATE_KEY }}