Skip to content

Add rich text components to export #735

Add rich text components to export

Add rich text components to export #735

Workflow file for this run

name: PR actions
on:
pull_request:
branches: [main]
paths:
- '**'
- '.github/workflows/client.yml'
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test:ci
code-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test:coverage
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- run: corepack enable
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
build-storybook:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build-storybook