Skip to content

test(sdk): automating tests to beta #3

test(sdk): automating tests to beta

test(sdk): automating tests to beta #3

Workflow file for this run

# Test the functionality of the spore-sdk packages.
name: Test
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
test-packages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Run core tests
working-directory: packages/core
run: pnpm run test
env:
VITE_ACCOUNT_CHARLIE: ${{ secrets.ACCOUNT_CHARLIE }}
VITE_ACCOUNT_ALICE: ${{ secrets.ACCOUNT_ALICE }}