Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKellerer committed May 28, 2024
1 parent cc5b9f4 commit 148b654
Show file tree
Hide file tree
Showing 85 changed files with 8,144 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lapis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,23 +95,23 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('siloLapisTests/**/package-lock.json') }}
key: ${{ runner.os }}-node-${{ hashFiles('lapis-e2e/**/package-lock.json') }}

- name: Prepare Tests
run: npm ci
working-directory: lapis-e2e

- name: Generate Lapis Client
run: npm run generateLapisClient
working-directory: siloLapisTests
working-directory: lapis-e2e

- name: Generate Lapis Client Protected
run: npm run generateLapisClientProtected
working-directory: siloLapisTests
working-directory: lapis-e2e

- name: Check Format
run: npm run check-format
working-directory: siloLapisTests
working-directory: lapis-e2e

- name: Docker metadata
id: dockerMetadata
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
run: |
docker compose -f lapis/docker-compose.yml pull
docker compose -f lapis/docker-compose.yml up -d --wait
cd siloLapisTests && npm run test
cd lapis-e2e && npm run test
env:
SILO_TAG: latest
LAPIS_TAG: ${{ steps.lapisBranchTag.outputs.lapisTag }}
Expand Down
4 changes: 2 additions & 2 deletions lapis-docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions lapis-e2e/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build/
node_modules/

**/output/
**/logs/
4 changes: 4 additions & 0 deletions lapis-e2e/.mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"require": "tsx",
"spec": "test/**/*.spec.ts"
}
2 changes: 2 additions & 0 deletions lapis-e2e/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/test/lapisClient
/test/lapisClientProtected
9 changes: 9 additions & 0 deletions lapis-e2e/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"printWidth": 110,
"trailingComma": "es5",
"semi": true,
"jsxSingleQuote": true,
"singleQuote": true,
"arrowParens": "avoid",
"quoteProps": "consistent"
}
7 changes: 7 additions & 0 deletions lapis-e2e/openapitools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "6.4.0"
}
}
Loading

0 comments on commit 148b654

Please sign in to comment.