next@5ead0145c20e331965e056bfbdee3e45c10b71eb #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
run-name: ${{ github.head_ref }}@${{ github.sha }} | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
changed-files: | |
name: analyze_changed_files | |
runs-on: ubuntu-latest | |
outputs: | |
config: ${{ steps.list-changed-files.outputs.config_all_changed_files }} | |
doc: ${{ steps.list-changed-files.outputs.doc_all_changed_files }} | |
shell: ${{ steps.list-changed-files.outputs.shell_all_changed_files }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Changed files | |
id: list-changed-files | |
uses: tj-actions/[email protected] | |
with: | |
# since_last_remote_commit: true # use only for testing, it's easy to produce no changed files | |
files_yaml_from_source_file: .changed-files.yml | |
debug: | |
name: debug | |
runs-on: ubuntu-latest | |
if: false # change to debug | |
env: | |
HEAD_REF: ${{ github.event.pull_request.head.ref }} | |
BASE_REF: ${{ github.event.pull_request.base.ref }} | |
steps: | |
- name: Debug | |
run: true | |
commitlint: | |
name: commit_lint | |
runs-on: ubuntu-latest | |
needs: changed-files | |
env: | |
# will not be set when running on push/merge to main | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
BASH_ENV: ./lib.sh | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Create package-lock.json | |
run: echo '{}' > package-lock.json | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: lts/iron | |
cache: npm | |
- run: | | |
npm --global install @commitlint/config-conventional | |
npm install --global @commitlint/[email protected] | |
npm install --global [email protected] | |
- name: Lint commits with commitlint and spellcheck | |
env: | |
COMMITLINT_CONFIG_PATH: .commitlintrc.yml | |
CSPELL_CONFIG_PATH: .cspell.config.yml | |
# will not be set when running on push/merge to main | |
BASE_REF: ${{ github.event.pull_request.base.ref }} | |
run: ./workflows/main/commit_lint.sh | |
shell: | |
name: lint_format_shell | |
runs-on: ubuntu-latest | |
needs: changed-files | |
if: needs.changed-files.outputs.shell | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Lint and format | |
uses: luizm/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SHFMT_OPTS: -d -i 2 -ln bash | |
SHELLCHECK_OPTS: -x --severity=warning | |
with: | |
sh_checker_only_diff: true | |
# needs write access https://github.com/luizm/action-sh-checker/pull/57 | |
# sh_checker_comment: true | |
config: | |
name: format_config | |
runs-on: ubuntu-latest | |
needs: changed-files | |
if: needs.changed-files.outputs.config | |
env: | |
FILES: ${{ needs.changed-files.outputs.config }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Prettier | |
uses: actionsx/prettier@v3 | |
with: | |
args: --check ${{ env.FILES }} | |
spellcheck: | |
name: spellcheck | |
runs-on: ubuntu-latest | |
needs: changed-files | |
# doesn't work on local ci, finds 0 files and gives false ok | |
if: (needs.changed-files.outputs.shell || needs.changed-files.outputs.doc) && github.event.local != true | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Cspell | |
uses: streetsidesoftware/[email protected] | |
with: | |
files: "." | |
incremental_files_only: true | |
config: ./.cspell.config.yml |