Skip to content

Feat: support prettier Comments on Changelog.md when updating a depen… #182

Feat: support prettier Comments on Changelog.md when updating a depen…

Feat: support prettier Comments on Changelog.md when updating a depen… #182

Workflow file for this run

# This isn't a reusable workflow but a CI action for this repo itself - testing the contained workflows & scripts.
name: Script Tests
on:
push:
jobs:
updater:
name: Updater @ ${{ matrix.host }}
runs-on: ${{ matrix.host }}-latest
strategy:
fail-fast: false
matrix:
host:
- ubuntu
- macos
- windows
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- name: Install make
if: ${{ matrix.host == 'macos' }}
run: |
brew install make
echo "$(brew --prefix)/opt/make/libexec/gnubin" >> $GITHUB_PATH
- run: make test
working-directory: updater