Skip to content

FEAT(CI): Configure Smoke-tests' automation for Storybook #8

FEAT(CI): Configure Smoke-tests' automation for Storybook

FEAT(CI): Configure Smoke-tests' automation for Storybook #8

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
env:
CACHE_AFFIX: pnpm-packages
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
PNPM_VERSION: 8
jobs:
common:
name: Common
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install pnpm package manager
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: restore cache for packages if applicable
uses: actions/cache@v3
id: packages-cache
with:
path: "${{ env.PNPM_CACHE_FOLDER }}"
key: ${{ runner.os }}-${{ env.CACHE_AFFIX }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-${{ env.CACHE_AFFIX }}-
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: testing
run: |
pnpm lint
pnpm t
smoke:
name: Smoke
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install pnpm package manager
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: restore cache for packages if applicable
uses: actions/cache@v3
id: packages-cache
with:
path: "${{ env.PNPM_CACHE_FOLDER }}"
key: ${{ runner.os }}-${{ env.CACHE_AFFIX }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-${{ env.CACHE_AFFIX }}-
- name: restore playwright cache if applicable
uses: actions/cache@v3
id: playwright-cache
with:
path: "~/.cache/ms-playwright"
key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: install dependencies
run: |
pnpm install --frozen-lockfile
pnpm exec playwright install --with-deps
- name: build artefacts
run: pnpm --filter "@solana/*ui" run build-storybook --quiet
- name: testing
run: pnpm --filter "@solana/*ui" run ci:test-smoke