feat: deployment scripts #33
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: 'Storybook Tests' | |
on: push | |
env: | |
WORKSPACE: 'chainpresence' | |
WORKSPACE_PATH: 'packages/chainpresence' | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5 | |
- name: Cache pnpm store | |
uses: actions/cache@v3 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: pnpm -F ${WORKSPACE} install | |
- name: Install Playwright | |
run: pnpm exec playwright install --with-deps | |
working-directory: ${{ env.WORKSPACE_PATH }} | |
- name: Build Storybook | |
run: pnpm -F ${WORKSPACE} build-storybook --quiet | |
- name: Serve Storybook and run tests | |
run: | | |
pnpm -F ${WORKSPACE} exec concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
"pnpm -F ${WORKSPACE} exec http-server storybook-static --port 6006 --silent" \ | |
"pnpm -F ${WORKSPACE} exec wait-on tcp:127.0.0.1:6006 && pnpm -F ${WORKSPACE} exec test-storybook" |