-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8451cfd
commit d66c720
Showing
5 changed files
with
564 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,19 +15,19 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
version: ['20.11.0', '22.3.0'] | ||
version: ['20.11.0', '22.9.0'] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4.2.0 | ||
- name: Setup Node | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].4 | ||
with: | ||
node-version: ${{ matrix.version }} | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Save error log | ||
uses: actions/upload-artifact@v4.3.0 | ||
uses: actions/upload-artifact@v4.4.0 | ||
if: ${{ failure() }} | ||
with: | ||
name: npm-debug-log-${{ hashFiles('package-lock.json') }} | ||
|
@@ -37,7 +37,7 @@ jobs: | |
- name: Test | ||
run: npm test | ||
- name: Report Coverage | ||
uses: codecov/codecov-action@v4.1.0 | ||
uses: codecov/codecov-action@v4.5.0 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
- name: Pack | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,15 +10,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4.2.0 | ||
- name: Setup Node | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].4 | ||
with: | ||
node-version: '20.11.0' | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Save error log | ||
uses: actions/upload-artifact@v4.2.0 | ||
uses: actions/upload-artifact@v4.4.0 | ||
if: ${{ failure() }} | ||
with: | ||
name: npm-debug-log-${{ hashFiles('package-lock.json') }} | ||
|
@@ -30,7 +30,7 @@ jobs: | |
- name: Pack | ||
run: npm pack | ||
- name: Push to NPM registry | ||
uses: JS-DevTools/npm-publish@v3.0.1 | ||
uses: JS-DevTools/npm-publish@v3.1.1 | ||
with: | ||
token: ${{ secrets.NPM_AUTH_TOKEN }} | ||
tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }} | ||
|
Oops, something went wrong.