Skip to content

Commit

Permalink
Add Github Action for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-lee committed Nov 24, 2023
1 parent 34be09d commit e467d1b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Test

on:
workflow_dispatch:
push:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-store
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT

- name: Use pnpm store
uses: actions/cache@v3
id: pnpm-cache
with:
path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install Dependencies
run: pnpm install --frozen-lockfile --prefer-offline

- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'

- name: Run test
run: pnpm --filter react-avatar-editor test

0 comments on commit e467d1b

Please sign in to comment.