Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand All @@ -38,4 +38,4 @@
run: npm run test:coverage -- --ci

- name: Comments coverage
run: npm run compodoc:coverage

Check warning on line 41 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / checks (20.x)

Unknown word: "compodoc"

Check warning on line 41 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / checks (16.x)

Unknown word: "compodoc"

Check warning on line 41 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / checks (18.x)

Unknown word: "compodoc"
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
fetch-depth: 0
token: ${{ secrets.HC_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 22.x
cache: "npm"
Expand All @@ -43,9 +43,9 @@
run: cp .badges/code/coverage-jest\ coverage.svg .badges/code/coverage.svg

- name: Generate comment coverage badge
run: npm run compodoc:build

Check warning on line 46 in .github/workflows/release-publish.yml

View workflow job for this annotation

GitHub Actions / checks (20.x)

Unknown word: "compodoc"

Check warning on line 46 in .github/workflows/release-publish.yml

View workflow job for this annotation

GitHub Actions / checks (16.x)

Unknown word: "compodoc"

Check warning on line 46 in .github/workflows/release-publish.yml

View workflow job for this annotation

GitHub Actions / checks (18.x)

Unknown word: "compodoc"
- name: Move generated comment badge
run: cp dist/compodoc/images/coverage-badge-documentation.svg ./.badges/comment/coverage.svg

Check warning on line 48 in .github/workflows/release-publish.yml

View workflow job for this annotation

GitHub Actions / checks (20.x)

Unknown word: "compodoc"

Check warning on line 48 in .github/workflows/release-publish.yml

View workflow job for this annotation

GitHub Actions / checks (16.x)

Unknown word: "compodoc"

Check warning on line 48 in .github/workflows/release-publish.yml

View workflow job for this annotation

GitHub Actions / checks (18.x)

Unknown word: "compodoc"

- name: git config
run: |
Expand Down
Loading