-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* install vitest * Format tests * update ci * fix lock files in example * Remove nodemon from run dev example-ssr, because it breaks sandbox ci
- Loading branch information
Willy Brauner
authored
Oct 18, 2023
1 parent
9d35041
commit 43c7879
Showing
19 changed files
with
598 additions
and
8,321 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"buildCommand": "build", | ||
"packages": ["/"], | ||
"sandboxes": ["/examples/example-client", "/examples/example-ssr"], | ||
"node": "18" | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: CI | ||
name: tests | ||
on: [push] | ||
jobs: | ||
build: | ||
|
@@ -13,13 +13,24 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- uses: pnpm/[email protected] | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
version: 6.32.11 | ||
run_install: true | ||
fetch-depth: 0 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: build | ||
run: npm run build | ||
run: pnpm run build | ||
|
||
- name: test | ||
run: npm run test | ||
run: pnpm run test | ||
|
||
- name: size | ||
run: pnpm run size |
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 |
---|---|---|
|
@@ -8,8 +8,6 @@ src/** | |
test | ||
example | ||
example-node | ||
.babelrc | ||
.prettierignore | ||
.prettierrc | ||
jest.config.ts | ||
tsconfig.json |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
.cache | ||
node_modules | ||
dist | ||
example/dist/* |
Oops, something went wrong.