Skip to content

feat: add semantic-release workflow #381

feat: add semantic-release workflow

feat: add semantic-release workflow #381

Workflow file for this run

---
name: Validate yaml files
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: lint yaml files
run: yamllint .github/workflows/
- name: Check workflow files
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