mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-10 22:53:06 +08:00
Bumps the github-actions-dependencies group with 1 update: [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common). Updates `hoverkraft-tech/ci-github-common` from 0.14.0 to 0.15.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases) - [Commits](https://github.com/hoverkraft-tech/ci-github-common/compare/0.14.0...0.15.0) --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-common dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
925 B
YAML
41 lines
925 B
YAML
name: Common Continuous Integration tasks
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
statuses: write
|
|
security-events: write
|
|
id-token: write
|
|
|
|
jobs:
|
|
linter:
|
|
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.15.0
|
|
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
|