Support more positioning options #47
Workflow file for this run
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: "Jest: e2e tests" | |
on: [pull_request] | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
- name: Install dependencies | |
run: pnpm install -r | |
- name: Build NPM package | |
run: pnpm prerelease | |
- name: Install Playwright dependencies | |
working-directory: packages/use-context-menu-website | |
run: pnpm exec playwright install | |
- name: Run Playwright tests | |
working-directory: packages/use-context-menu-website | |
run: pnpm test |