Mikael Lirbank
Mikael Lirbank
Explore posts from servers
CCConvex Community
Created by Mikael Lirbank on 12/7/2023 in #general
Dashboard feature requests
Hey, cool! Thanks for the update! 🤘
8 replies
CCConvex Community
Created by Mikael Lirbank on 4/29/2023 in #general
ConvexProvider auth hook
Cool, I'm going to take a look! Thanks for sharing!
10 replies
CCConvex Community
Created by allen on 12/8/2023 in #general
Curious if theres been any thought to
The Lucia article was published after we started rolling our own auth, but I looked it through a few weeks ago when we did some major changes to our auth (moved from OAuth2 to passwordless). I believe Lucia is missing passwordless, so it was a no go for us then (I think, that's how I remember it).
10 replies
CCConvex Community
Created by allen on 12/8/2023 in #general
Curious if theres been any thought to
Hi @allen , I am so with you on this. We eventually built our own custom auth on top of Convex, so we're happy now, but I agree with you that auth is not straight forward and would benefit from some love.
10 replies
CCConvex Community
Created by Mikael Lirbank on 12/7/2023 in #general
Dashboard feature requests
Another thought, the UI remember my filters when I switch between tables. But does that make sense, since most queries don't match anything in another table?
8 replies
CCConvex Community
Created by Mikael Lirbank on 11/14/2023 in #general
Hey, we're running Playwright in a
I think Vercel actually create a GH deployment status, not a webhook (I think 🙃) https://docs.github.com/en/rest/deployments/statuses?apiVersion=2022-11-28#create-a-deployment-status
7 replies
CCConvex Community
Created by Mikael Lirbank on 11/14/2023 in #general
Hey, we're running Playwright in a
No description
7 replies
CCConvex Community
Created by Mikael Lirbank on 11/14/2023 in #general
Hey, we're running Playwright in a
Here I am setting the BASE_URL env from the github.event.deployment_status.environment_url that I belive is provided by Vercel via a webhook call to GH... I wonder if I can customize what Vercel send to GH Actions...
7 replies
CCConvex Community
Created by Mikael Lirbank on 11/14/2023 in #general
Hey, we're running Playwright in a
Here is the GH Action:
# https://vercel.com/guides/how-can-i-run-end-to-end-tests-after-my-vercel-preview-deployment
# https://playwright.dev/docs/ci-intro
# https://github.com/vercel/next.js/tree/canary/examples/with-playwright

name: Playwright Tests
on:
deployment_status:
jobs:
test:
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success'
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Log environment_url
run: echo "${{ github.event.deployment_status.environment_url }}"
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
env:
BASE_URL: ${{ github.event.deployment_status.environment_url }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
# https://vercel.com/guides/how-can-i-run-end-to-end-tests-after-my-vercel-preview-deployment
# https://playwright.dev/docs/ci-intro
# https://github.com/vercel/next.js/tree/canary/examples/with-playwright

name: Playwright Tests
on:
deployment_status:
jobs:
test:
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success'
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Log environment_url
run: echo "${{ github.event.deployment_status.environment_url }}"
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
env:
BASE_URL: ${{ github.event.deployment_status.environment_url }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
7 replies
CCConvex Community
Created by Mikael Lirbank on 11/14/2023 in #general
Hey, we're running Playwright in a
I wonder if I can pass variables from Vercel post deploy to GitHub actions, reading here https://docs.github.com/en/rest/deployments?apiVersion=2022-11-28#list-deployment-statuses
7 replies
CCConvex Community
Created by Mikael Lirbank on 11/7/2023 in #general
I am seeing a lot of these this
We do use them, but I don't in this feature.
15 replies
CCConvex Community
Created by Mikael Lirbank on 11/7/2023 in #general
I am seeing a lot of these this
No description
15 replies
CCConvex Community
Created by Mikael Lirbank on 11/7/2023 in #general
I am seeing a lot of these this
I just started it up and added a comment to one of the Convex function files, and it happened right away.
15 replies
CCConvex Community
Created by Mikael Lirbank on 11/7/2023 in #general
I am seeing a lot of these this
Ehh, I just killed it a minute ago.
15 replies
CCConvex Community
Created by Mikael Lirbank on 11/7/2023 in #general
I am seeing a lot of these this
I've probably killed it a few times. But mostly I let it run...
15 replies