chore: fix confusing wording in "jest-support" #1949
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: ci | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# Builds the library and persists it as an artifact. | |
# Later jobs can then reuse that build artifact, skipping | |
# the build step. | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8.15.6 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install Playwright browsers | |
run: pnpm exec playwright install | |
- name: Lint | |
run: pnpm lint | |
- name: Unit tests | |
run: pnpm test:unit | |
- name: Build | |
run: pnpm build | |
- name: Node.js tests | |
run: pnpm test:node | |
- name: Browser tests | |
run: pnpm test:browser | |
- name: Native tests | |
run: pnpm test:native | |
- name: Upload test artifacts | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-report | |
path: test/browser/test-results |