Upgrade Vite, vite plugins, @sveltejs/package #47
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: Test | |
on: | |
push: | |
branches: | |
- '**' | |
env: | |
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }} | |
PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ vars.PUBLIC_CLERK_PUBLISHABLE_KEY }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install | |
run: bun i --frozen-lockfile | |
- name: Build | |
run: bun run build | |
- name: Install Playwright Browsers | |
run: bun run playwright install | |
- name: Unit Tests | |
run: bun run test:unit | |
- name: E2E Tests | |
run: bun run test:e2e |