-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Showing
378 changed files
with
9,566 additions
and
4,493 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -26,11 +26,11 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '16.x' | ||
node-version: '18.x' | ||
cache: pnpm | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpm run lint | ||
- run: cd packages/kit && pnpm prepublishOnly | ||
- run: cd packages/kit && pnpm prepublishOnly && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please run prepublishOnly locally and commit the changes after you have reviewed them"; git diff; exit 1); } | ||
- run: pnpm run check | ||
Tests: | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -39,9 +39,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- node-version: 16 | ||
os: ubuntu-latest | ||
e2e-browser: 'chromium' | ||
- node-version: 18 | ||
os: ubuntu-latest | ||
e2e-browser: 'chromium' | ||
|
@@ -67,7 +64,7 @@ jobs: | |
run: find packages -type d -name test-results -not -empty | tar -czf test-results.tar.gz --files-from=- | ||
- name: Upload test results | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
retention-days: 3 | ||
name: test-failure-${{ github.run_id }}-${{ matrix.os }}-${{ matrix.node-version }}-${{ matrix.e2e-browser }} | ||
|
@@ -79,27 +76,27 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- node-version: 16 | ||
- node-version: 18 | ||
os: windows-2019 # slowness reported on newer versions https://github.com/actions/runner-images/issues/5166 | ||
e2e-browser: 'chromium' | ||
mode: 'dev' | ||
- node-version: 16 | ||
- node-version: 18 | ||
os: ubuntu-latest | ||
e2e-browser: 'firefox' | ||
mode: 'dev' | ||
- node-version: 16 | ||
- node-version: 18 | ||
os: macOS-latest | ||
e2e-browser: 'webkit' | ||
mode: 'dev' | ||
- node-version: 16 | ||
- node-version: 18 | ||
os: windows-2019 # slowness reported on newer versions https://github.com/actions/runner-images/issues/5166 | ||
e2e-browser: 'chromium' | ||
mode: 'build' | ||
- node-version: 16 | ||
- node-version: 18 | ||
os: ubuntu-latest | ||
e2e-browser: 'firefox' | ||
mode: 'build' | ||
- node-version: 16 | ||
- node-version: 18 | ||
os: macOS-latest | ||
e2e-browser: 'webkit' | ||
mode: 'build' | ||
|
@@ -122,7 +119,7 @@ jobs: | |
run: find packages -type d -name test-results -not -empty | tar -czf test-results-cross-platform-${{ matrix.mode }}.tar.gz --files-from=- | ||
- name: Upload test results | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
retention-days: 3 | ||
name: test-failure-cross-platform-${{ matrix.mode }}-${{ github.run_id }}-${{ matrix.os }}-${{ matrix.node-version }}-${{ matrix.e2e-browser }} | ||
|
@@ -134,7 +131,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
node-version: 18 | ||
cache: pnpm | ||
- run: pnpm install --frozen-lockfile | ||
- run: cd packages/kit && pnpm prepublishOnly | ||
|
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
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
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
Oops, something went wrong.