Update Privy #734
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: Frontend Testing Suite | |
on: | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
env: | |
NEXT_PUBLIC_SENTRY_ENVIRONMENT: test | |
jobs: | |
run-tests: | |
name: Run Frontend Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18.17.1' | |
cache: yarn | |
- name: Install packages via yarn | |
run: yarn install --frozen-lockfile --check-files | |
- name: Test Frontend | |
run: yarn test:ci |