You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In grunt-contrib-qunit, I tried to update grunt-contrib-internal from v4 to latest v6 and noticed that after running ./node_modules/.bin/grunt build-contrib (from a container with Node.js 10, and Debian 9) it created the .github/workflows/test.yml file as follows:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..6869813
--- /dev/null+++ b/.github/workflows/test.yml@@ -0,0 +1,39 @@+name: Tests^M+^M+on: [push, pull_request]^M+^M+env:^M+ FORCE_COLOR: 2^M+^M+jobs:^M+ run:^M+ name: Node ${{ matrix.node }} on ${{ matrix.os }}^M+ runs-on: ${{ matrix.os }}^M+^M+ strategy:^M+ fail-fast: false^M+ matrix:^M+ node: [10, 12, 14]^M+ os: [ubuntu-latest, windows-latest]^M+^M+ steps:^M+ - name: Clone repository^M+ uses: actions/checkout@v2^M+^M+ - name: Set up Node.js^M+ uses: actions/setup-node@v2^M+ with:^M+ node-version: ${{ matrix.node }}^M+^M+ - name: Install npm dependencies^M+ run: npm ci^M+^M+ - name: Run tests^M+ run: npm test^M+^M+ # We test multiple Windows shells because of prior stdout buffering issues^M+ # filed against Grunt. https://github.com/joyent/node/issues/3584^M+ - name: Run PowerShell tests^M+ run: "npm test # PowerShell" # Pass comment to PS for easier debugging^M+ shell: powershell^M+ if: startsWith(matrix.os, 'windows')^M
And it modified CONTRIBUTING.md as well:
-… for information on contributing to this project.+… for information on contributing to this project.^M
The text was updated successfully, but these errors were encountered:
Does the repo you are including grunt-contrib-internal have the same .gitattributes file as this repo?
It's the only thing I can think of that might be causing the issue. Because the file is this repo do have LF since version 8.1.0, so theoretically if you use the same .gitattributes file you should be OK.
In grunt-contrib-qunit, I tried to update grunt-contrib-internal from v4 to latest v6 and noticed that after running
./node_modules/.bin/grunt build-contrib
(from a container with Node.js 10, and Debian 9) it created the.github/workflows/test.yml
file as follows:And it modified CONTRIBUTING.md as well:
The text was updated successfully, but these errors were encountered: