Skip to content
Open
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/check-pr-reviews.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
name: Check PR Reviews
steps:
- name: Perform Check of PR Reviews
- name: Check PR Reviews
uses: checkdigit/github-actions/check-pr-reviews@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/check-published-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:

jobs:
checkPublished:
runs-on: ubuntu-latest
name: Check Published
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['22.x', '23.x']
node-version: ['22.x', '24.x']
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand All @@ -23,8 +23,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install latest npm
run: npm install -g npm@11.4.2
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Prepare
run: npm run prepare
- name: Compile
run: npm run ci:compile
- name: Check Code Style
Expand All @@ -39,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['22.x', '23.x']
node-version: ['22.x', '24.x']
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand All @@ -50,8 +54,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install latest npm
run: npm install -g npm@11.4.2
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Prepare
run: npm run prepare
- name: Compile
run: npm run ci:compile
- name: Check Code Style
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,23 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Prepare
run: npm run prepare
- name: Calculate Code Coverage
run: npm run ci:coverage
- name: Create Coverage Report for base branch
run: |
mv coverage/lcov.info coverage/lcov_head.info
mv coverage coverage-pr
git fetch
git checkout origin/${{ github.event.pull_request.base.ref }}
npm ci --ignore-scripts && npm run ci:coverage
npm ci --ignore-scripts && npm run prepare && npm run ci:coverage
- name: Post Coverage Report
uses: checkdigit/github-actions/coverage-reporter@main
with:
lcov-file: 'coverage/lcov_head.info'
lcov-base: 'coverage/lcov.info'
coverage-results-folder-pr: 'coverage-pr'
coverage-results-folder-base: 'coverage'
delete-old-comments: true
4 changes: 3 additions & 1 deletion .github/workflows/publish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- name: Check Label
uses: checkdigit/github-actions/check-label@main
Expand All @@ -29,6 +29,8 @@ jobs:
run: npm ci --ignore-scripts
- name: Audit Signatures
run: npm audit signatures
- name: Prepare
run: npm run prepare
- name: Run Test
run: npm run ci:test
- name: Prepare Beta
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Prepare
run: npm run prepare
- name: Publish
run: npm publish
env:
Expand Down
Loading
Loading