diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-07-29 11:18:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 11:18:16 +0000 |
commit | 7f1685d7f60c29eeabbd3c556428b67142201df2 (patch) | |
tree | b8d79fdf8a6ae86d61ba87e17aca8f02f12e8ad7 | |
parent | 0632b1aa5f0ea1d0c9c4411e9ff3d05336736fbb (diff) | |
parent | 2a4b58c9b7199e1c2f2e84489a7481a5ec64d472 (diff) | |
download | gcc-7f1685d7f60c29eeabbd3c556428b67142201df2.zip gcc-7f1685d7f60c29eeabbd3c556428b67142201df2.tar.gz gcc-7f1685d7f60c29eeabbd3c556428b67142201df2.tar.bz2 |
Merge #1402
1402: CI Improvements and fixes r=philberty a=liushuyu
- CI: fix Remark check (fix #1340)
Co-authored-by: liushuyu <liushuyu011@gmail.com>
-rw-r--r-- | .github/workflows/Remark.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/Remark.yml b/.github/workflows/Remark.yml index 7b13967..b3b04f9 100644 --- a/.github/workflows/Remark.yml +++ b/.github/workflows/Remark.yml @@ -15,16 +15,16 @@ jobs: steps: # Setup - name: Checkout - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v1.4.4 + uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '16.x' - name: Install remark run: npm install remark-cli remark-lint remark-lint-maximum-line-length remark-preset-lint-recommended remark-gfm # Run - # - name: Check *.md files - # run: git ls-files -z *.md | xargs -0 -n 1 npx remark -u lint -f > /dev/null + - name: Check *.md files + run: git ls-files -z *.md | xargs -0 -n 1 npx remark -u lint -f > /dev/null |