Skip to content

Commit

Permalink
Merge branch 'main' into feat/dbauth-fetch-handler
Browse files Browse the repository at this point in the history
  • Loading branch information
dac09 committed Jan 21, 2024
2 parents abf3a95 + 41ac728 commit 7491bdf
Show file tree
Hide file tree
Showing 75 changed files with 2,694 additions and 735 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
uses: SimenB/github-actions-cpu-cores@v2

- name: 🧪 Test
run: yarn test-ci ${{ steps.cpu-cores.outputs.count }}
run: yarn test-ci --minWorkers=1 --maxWorkers=${{ steps.cpu-cores.outputs.count }}

build-lint-test-skip:
needs: detect-changes
Expand Down Expand Up @@ -811,6 +811,10 @@ jobs:
name: 🌲 Create Redwood App
runs-on: ubuntu-latest

env:
REDWOOD_CI: 1
REDWOOD_DISABLE_TELEMETRY: 1

steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -848,7 +852,7 @@ jobs:
git config --global user.name "Your Name"
- name: e2e test
run: yarn test e2e
run: yarn test:e2e
working-directory: ./packages/create-redwood-app
env:
PROJECT_PATH: ${{ env.PROJECT_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"release:notes": "node ./tasks/release/generateReleaseNotes.mjs",
"release:triage": "node ./tasks/release/triage/triage.mjs",
"smoke-tests": "node ./tasks/smoke-tests/smoke-tests.mjs",
"test": "nx run-many -t test -- --colors --maxWorkers=4",
"test-ci": "nx run-many -t test -- --colors --maxWorkers",
"test": "nx run-many -t test -- --minWorkers=1 --maxWorkers=4",
"test-ci": "nx run-many -t test",
"test:k6": "tsx ./tasks/k6-test/run-k6-tests.mts",
"test:types": "tstyche"
},
Expand Down
1 change: 1 addition & 0 deletions packages/api-server/ambient.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module 'dotenv-defaults'
4 changes: 3 additions & 1 deletion packages/api-server/dist.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ describe('dist', () => {
"apiCliOptions": {
"apiRootPath": {
"alias": [
"api-root-path",
"rootPath",
"root-path",
],
Expand Down Expand Up @@ -71,10 +72,11 @@ describe('dist', () => {
"type": "string",
},
},
"createServer": [Function],
"webCliOptions": {
"apiHost": {
"alias": "api-host",
"desc": "Forward requests from the apiUrl, defined in redwood.toml to this host",
"desc": "Forward requests from the apiUrl, defined in redwood.toml, to this host",
"type": "string",
},
"port": {
Expand Down
9 changes: 9 additions & 0 deletions packages/api-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,16 @@
"@types/yargs": "17.0.32",
"aws-lambda": "1.0.7",
"jest": "29.7.0",
"pino-abstract-transport": "1.1.0",
"typescript": "5.3.3"
},
"peerDependencies": {
"@redwoodjs/graphql-server": "6.0.7"
},
"peerDependenciesMeta": {
"@redwoodjs/graphql-server": {
"optional": true
}
},
"gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1"
}
Loading

0 comments on commit 7491bdf

Please sign in to comment.