chore(scripts): rename test
to test:unit
to avoid conflict
#434
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
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.1.3 | |
- name: Build and test the library | |
run: | | |
bun install | |
bun run playwright install --with-deps | |
bun build:lib | |
bun test:unit | |
bun test:e2e |