mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-10 06:33:06 +08:00
Bumps the github-actions-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [hoverkraft-tech/ci-github-nodejs](https://github.com/hoverkraft-tech/ci-github-nodejs), [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](11bd71901b...08c6903cd8) Updates `hoverkraft-tech/ci-github-nodejs` from 0.12.0 to 0.13.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-nodejs/releases) - [Commits](77c905a257...51de90c148) Updates `hoverkraft-tech/ci-github-common` from 0.23.0 to 0.23.1 - [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases) - [Commits](9a3d71ca9f...6857ef6d10) Updates `actions/create-github-app-token` from 2.0.6 to 2.1.1 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](df432ceedc...a8d6161485) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-nodejs dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common dependency-version: 0.23.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies - dependency-name: actions/create-github-app-token dependency-version: 2.1.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
42 lines
984 B
YAML
42 lines
984 B
YAML
name: Common Continuous Integration tasks
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
packages: read
|
|
security-events: write
|
|
statuses: write
|
|
id-token: write
|
|
|
|
jobs:
|
|
linter:
|
|
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@6857ef6d10f704e0998aa4955282f27d1b9be778 # 0.23.1
|
|
with:
|
|
linter-env: |
|
|
FILTER_REGEX_EXCLUDE=dist/**/*
|
|
VALIDATE_JSCPD=false
|
|
VALIDATE_TYPESCRIPT_STANDARD=false
|
|
VALIDATE_TYPESCRIPT_ES=false
|
|
VALIDATE_TYPESCRIPT_PRETTIER=false
|
|
VALIDATE_JAVASCRIPT_ES=false
|
|
VALIDATE_JAVASCRIPT_STANDARD=false
|
|
|
|
check-nodejs:
|
|
name: Test nodejs
|
|
needs: linter
|
|
uses: ./.github/workflows/__check-nodejs.yml
|
|
secrets: inherit
|
|
|
|
check-dist:
|
|
name: Test nodejs
|
|
needs: linter
|
|
uses: ./.github/workflows/__check-dist.yml
|
|
|
|
check-action:
|
|
name: Test action
|
|
needs: [check-nodejs, check-dist]
|
|
uses: ./.github/workflows/__check-action.yml
|