fix: handle windows/dos newlines on newline_to_br
and strip_newlines
#21
Workflow file for this run
This file contains 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
name: PR Build | |
on: pull_request | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
uses: ./.github/workflows/build.yml | |
with: | |
os: ${{ matrix.os }} | |
lint: | |
uses: ./.github/workflows/lint.yml | |
test: | |
needs: build | |
uses: ./.github/workflows/test.yml | |
coverage: | |
uses: ./.github/workflows/coverage.yml | |
performance: | |
needs: build | |
uses: ./.github/workflows/performance.yml | |
with: | |
os: ubuntu-latest |