Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ jobs:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm test
# - name: Lint
# if: matrix.node_version == env.TARGET_COVERAGE_NODE_VERSION
# run: npm run lint
# - name: Upload checkstyle report
# if: matrix.node_version == env.TARGET_COVERAGE_NODE_VERSION
# uses: jwgmeligmeyling/checkstyle-github-action@master
# with:
# path: '**/checkstyle-result.xml'
- name: Lint
if: matrix.node_version == env.TARGET_COVERAGE_NODE_VERSION
run: npm run lint
- name: Upload checkstyle report
if: matrix.node_version == env.TARGET_COVERAGE_NODE_VERSION
uses: jwgmeligmeyling/checkstyle-github-action@master
with:
path: '**/checkstyle-result.xml'
token: ${{ secrets.GITHUB_TOKEN }}
Copy link
Collaborator

@feelform feelform Nov 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have to use secrets.REPO_TOKEN token

- name: Coverage
if: matrix.node_version == env.TARGET_COVERAGE_NODE_VERSION
run: npm run coverage
Expand Down
Loading