Skip to content

chore(deps): update vidavidorra/.github action to v1.2.1 #95

chore(deps): update vidavidorra/.github action to v1.2.1

chore(deps): update vidavidorra/.github action to v1.2.1 #95

Workflow file for this run

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@6525884860c7e43a6547e774448953b56a5b03cb # v1.2.1
lint:
uses: vidavidorra/.github/.github/workflows/node-lint.yml@cccc592e98e8d7089d7267f3505374f447be71d1 # v4.2.31
build:
uses: vidavidorra/.github/.github/workflows/node-build.yml@cccc592e98e8d7089d7267f3505374f447be71d1 # v4.2.31
strategy:
fail-fast: false
matrix:
nodeVersion: [18, 20, 22]
with:
nodeVersion: ${{ matrix.nodeVersion }}
test:
uses: vidavidorra/.github/.github/workflows/node-test.yml@cccc592e98e8d7089d7267f3505374f447be71d1 # v4.2.31
strategy:
fail-fast: false
matrix:
nodeVersion: [18, 20, 22]
with:
nodeVersion: ${{ matrix.nodeVersion }}
code-coverage:
uses: vidavidorra/.github/.github/workflows/node-test-coverage.yml@cccc592e98e8d7089d7267f3505374f447be71d1 # v4.2.31
needs:
- lint
- build
- test
secrets:
codecovToken: ${{ secrets.CODECOV_TOKEN }}
release:
uses: vidavidorra/.github/.github/workflows/release.yml@cccc592e98e8d7089d7267f3505374f447be71d1 # v4.2.31
needs:
- lint-commit-messages
- lint
- build
- test
- code-coverage
secrets:
privateKey: ${{ secrets.RELEASE_PRIVATE_KEY }}
npmToken: ${{ secrets.NPM_PUBLISH_TOKEN }}