fix(deps): update lexical monorepo to ^0.22.0 (#145) #199
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
name: Run Playwright Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
playwright: | |
name: "Playwright Tests" | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Bun | |
run: npm install -g bun | |
- name: Install packages | |
run: bun install | |
- name: Run e2e tests | |
run: bun run test:e2e | |
env: | |
HOME: /root | |
VITE_AUTH0_DOMAIN: ${{ secrets.VITE_AUTH0_DOMAIN }} | |
VITE_AUTH0_CLIENT_ID: ${{ secrets.VITE_AUTH0_CLIENT_ID }} |