8000 build(deps-dev): bump @commitlint/cli from 19.8.0 to 19.8.1 · remarkablemark/github-actions-workflows@3060d39 · GitHub
[go: up one dir, main page]

Skip to content
10891

build(deps-dev): bump @commitlint/cli from 19.8.0 to 19.8.1 #524

build(deps-dev): bump @commitlint/cli from 19.8.0 to 19.8.1

build(deps-dev): bump @commitlint/cli from 19.8.0 to 19.8.1 #524

Workflow file for this run

# 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) }}'
0