build(deps-dev): bump @commitlint/cli from 19.8.0 to 19.8.1 #524
Workflow file for this run
This file contains hidden or 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
# https://docs.github.com/en/actions/learn-github-actions/contexts | |
name: GitHub Context | |
on: [push, pull_request] | |
jobs: | |
github-context: | |
runs-on: ubuntu-latest | |
# https://www.edwardthomson.com/blog/github_actions_12_information_about_your_workflow.html | |
steps: | |
- name: github context | |
run: echo '${{ toJson(github) }}' | |
continue-on-error: true | |
- name: job context | |
run: echo '${{ toJson(job) }}' | |
- name: steps context | |
run: echo '${{ toJson(steps) }}' | |
- name: runner context | |
run: echo '${{ toJson(runner) }}' | |
- name: strategy context | |
run: echo '${{ toJson(strategy) }}' | |
- name: matrix context | |
run: echo '${{ toJson(matrix) }}' |