Skip to content

Commit

Permalink
Merge pull request #178 from reviewdog/bump-node-v20
Browse files Browse the repository at this point in the history
bump Node.js v20
  • Loading branch information
shogo82148 authored Jul 8, 2023
2 parents 0ef683a + b71cb57 commit 3e18568
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: "20"
- run: npm install
- name: Test eslint-formatter-rdjson
run: ./eslint-formatter-rdjson/test.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- master
tags:
- 'v*.*.*'
- "v*.*.*"
pull_request:
types:
- labeled
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14, 16, 18]
node_version: ["14", "16", "18", "20"]

steps:
- uses: actions/checkout@v3
Expand All @@ -22,33 +22,33 @@ jobs:
tool_name: eslint-github-pr-check
reporter: github-pr-check
level: info
eslint_flags: 'testdata/ --ignore-pattern /test-subproject/'
eslint_flags: "testdata/ --ignore-pattern /test-subproject/"
- name: eslint-github-check
uses: ./
with:
tool_name: eslint-github-check
reporter: github-check
level: warning
eslint_flags: 'testdata/ --ignore-pattern /test-subproject/'
eslint_flags: "testdata/ --ignore-pattern /test-subproject/"
- name: eslint-github-pr-review
uses: ./
with:
tool_name: eslint-github-pr-review
reporter: github-pr-review
eslint_flags: 'testdata/ --ignore-pattern /test-subproject/'
eslint_flags: "testdata/ --ignore-pattern /test-subproject/"
- name: eslint-subproject-github-pr-review
uses: ./
with:
tool_name: eslint-subproject-github-pr-review
reporter: github-pr-review
workdir: ./test-subproject
eslint_flags: 'sub-testdata/'
eslint_flags: "sub-testdata/"
- name: eslint-subproject
uses: ./
with:
tool_name: eslint-subproject
workdir: ./test-subproject
eslint_flags: 'sub-testdata/'
eslint_flags: "sub-testdata/"
reporter: github-check
level: warning
filter_mode: file
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: "20"
- run: yarn install
- name: Test eslint-formatter-rdjson
run: ./eslint-formatter-rdjson/test.sh

0 comments on commit 3e18568

Please sign in to comment.