fix: Changed react plugin to non-swc variation #559
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: PR Checks | |
on: [push, pull_request] | |
jobs: | |
verify-pr: | |
name: Verify PR | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
# Compile and build are ran on install | |
- name: Unit Tests | |
working-directory: packages/vite-plugin-web-extension | |
run: pnpm test | |
# - name: E2E Tests | |
# working-directory: packages/e2e | |
# run: pnpm test |