Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: run docker test only #1803

Merged
merged 4 commits into from
Sep 29, 2022
Merged

ci: run docker test only #1803

merged 4 commits into from
Sep 29, 2022

Conversation

saihaj
Copy link
Collaborator

@saihaj saihaj commented Sep 27, 2022

closes #1015

@changeset-bot
Copy link

changeset-bot bot commented Sep 27, 2022

⚠️ No Changeset found

Latest commit: abead76

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions
Copy link
Contributor

github-actions bot commented Sep 27, 2022

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-yoga/apollo-link 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/urql-exchange 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/common 3.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/redis-event-target 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/typed-event-target 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/graphiql 3.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
graphql-yoga 3.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/node 3.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/plugin-apollo-inline-trace 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/plugin-apq 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/plugin-persisted-operations 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/plugin-response-cache 1.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/render-graphiql 3.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎
@graphql-yoga/subscription 3.0.0-alpha-20220928180559-4b7c328c npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented Sep 27, 2022

✅ Benchmark Results

     ✓ no_errors
     ✓ expected_result

     checks.........................: 100.00% ✓ 109178      ✗ 0    
     data_received..................: 16 MB   542 kB/s
     data_sent......................: 6.3 MB  209 kB/s
     http_req_blocked...............: avg=1.31µs   min=800ns   med=1.1µs   max=877.4µs p(90)=1.6µs   p(95)=2µs     
     http_req_connecting............: avg=13ns     min=0s      med=0s      max=722.5µs p(90)=0s      p(95)=0s      
   ✓ http_req_duration..............: avg=467.11µs min=368.8µs med=421.6µs max=23.29ms p(90)=473.8µs p(95)=563.06µs
       { expected_response:true }...: avg=467.11µs min=368.8µs med=421.6µs max=23.29ms p(90)=473.8µs p(95)=563.06µs
     http_req_failed................: 0.00%   ✓ 0           ✗ 54589
     http_req_receiving.............: avg=19.09µs  min=10.9µs  med=16.2µs  max=8.03ms  p(90)=21.7µs  p(95)=25.4µs  
     http_req_sending...............: avg=6.24µs   min=4.2µs   med=5.1µs   max=7.48ms  p(90)=7.3µs   p(95)=10.6µs  
     http_req_tls_handshaking.......: avg=0s       min=0s      med=0s      max=0s      p(90)=0s      p(95)=0s      
     http_req_waiting...............: avg=441.78µs min=349.8µs med=398.9µs max=23.13ms p(90)=444.6µs p(95)=523.3µs 
     http_reqs......................: 54589   1819.506537/s
     iteration_duration.............: avg=542.36µs min=426.1µs med=493.9µs max=24.46ms p(90)=557µs   p(95)=650.1µs 
     iterations.....................: 54589   1819.506537/s
     vus............................: 1       min=1         max=1  
     vus_max........................: 1       min=1         max=1  

@saihaj saihaj changed the base branch from v2 to v3 September 28, 2022 16:11
@saihaj saihaj marked this pull request as ready for review September 28, 2022 16:11
@saihaj saihaj changed the title ci: temp run docker test only ci: run docker test only Sep 28, 2022
@saihaj saihaj self-assigned this Sep 28, 2022
@github-actions
Copy link
Contributor

github-actions bot commented Sep 28, 2022

🚀 Website Preview

The latest changes to the website are available as preview in: https://0a82af3e.graphql-yoga.pages.dev

@@ -4,6 +4,7 @@
"version": "1.0.0",
"scripts": {
"start": "ts-node src/index.ts",
"build": "node ./build.js",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need build since project already uses ts-node

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a build this way I can bundle everything in a JS file and don’t need to worry about copying over node_modules in the container

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh it is "binary" 👍

@saihaj saihaj requested a review from ardatan September 29, 2022 10:12
@ardatan ardatan merged commit fdbcc0e into v3 Sep 29, 2022
@ardatan ardatan deleted the saihaj/docker-e2e branch September 29, 2022 10:30
@saihaj saihaj mentioned this pull request Oct 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants