fix(ui): shortcuts to create new request when no tab opened #446
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: E2E Tests with CodeceptJS | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- packages/ui/src/** | |
- packages/ui/tests/** | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- packages/ui/src/** | |
- packages/ui/tests/** | |
- packages/ui/package.json | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.42.1-jammy | |
defaults: | |
run: | |
working-directory: ./packages/ui | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm i | |
- name: Run Playwright tests | |
run: npm run ci-test | |
env: | |
HOME: /root |