Skip to content

fix(core): check for auth on account pages #833

fix(core): check for auth on account pages

fix(core): check for auth on account pages #833

Workflow file for this run

name: Create Catalyst CLI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
merge_group:
types: [checks_requested]
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
BIGCOMMERCE_STORE_HASH: ${{ secrets.BIGCOMMERCE_STORE_HASH }}
BIGCOMMERCE_CUSTOMER_IMPERSONATION_TOKEN: ${{ secrets.BIGCOMMERCE_CUSTOMER_IMPERSONATION_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2
- name: Use Node.js
uses: actions/setup-node@main
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Tests
run: pnpm test
working-directory: packages/create-catalyst