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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
version: ['22.21.1', '24.11.1']
version: ['22.22.1', '24.16.0', '26.2.0']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2
- name: Setup Node
uses: actions/setup-node@v4.3.0
uses: actions/setup-node@v6.4.0
with:
node-version: ${{ matrix.version }}
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v7.0.1
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Test
run: npm test
- name: Report Coverage
uses: codecov/codecov-action@v5.5.1
uses: codecov/codecov-action@v6.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Pack
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2
- name: Setup Node
uses: actions/setup-node@v4.3.0
uses: actions/setup-node@v6.4.0
with:
node-version: '24.11.1'
node-version: '26.2.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v7.0.1
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Pack
run: npm pack
- name: Push to NPM registry
uses: JS-DevTools/npm-publish@v4.1.1
uses: JS-DevTools/npm-publish@v4.1.5
with:
access: public
tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }}
3 changes: 3 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env sh

npm run lint-staged
Comment thread
knightedcodemonkey marked this conversation as resolved.
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh

npm run lint-staged
npm run check-types
Comment thread
knightedcodemonkey marked this conversation as resolved.
Loading
Loading