Skip to content

ci(client): refactor release workflow #19

ci(client): refactor release workflow

ci(client): refactor release workflow #19

Workflow file for this run

name: Workflows Linter
on:
pull_request:
paths:
- '.github/workflows/**.yml'
push:
branches:
- main
paths:
- '.github/workflows/**.yml'
jobs:
actionlint:
name: Run actionlint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run workflow linter
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color
shell: bash