-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from magieno/add-client-types
- Exploring how the sqlite-client could work with different sqlite adapters
- Loading branch information
Showing
38 changed files
with
18,081 additions
and
651 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
# Set the type of machine to run on | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
if: github.ref != 'refs/heads/master' | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
always-auth: true | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm -v | ||
- run: npm ci | ||
- run: npm run package | ||
|
||
# Run the tests | ||
- run: npm ci | ||
working-directory: e2e | ||
- run: npm run build | ||
working-directory: e2e | ||
- run: npm run test | ||
working-directory: e2e |
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 |
---|---|---|
|
@@ -40,4 +40,7 @@ testem.log | |
Thumbs.db | ||
|
||
*/node_modules/* | ||
*/dist/ | ||
**/*/dist/ | ||
|
||
e2e/*/assets/* | ||
e2e/coverage |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
E2E testing | ||
========== | ||
|
||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
launch: { | ||
headless: true | ||
}, | ||
browserContext: 'default', | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import type {Config} from 'jest'; | ||
|
||
export default async (): Promise<Config> => { | ||
return { | ||
verbose: true, | ||
preset: "jest-puppeteer" | ||
}; | ||
}; |
Oops, something went wrong.