Skip to content

refactor(store): update store homepage and checkout design #14403

refactor(store): update store homepage and checkout design

refactor(store): update store homepage and checkout design #14403

Workflow file for this run

name: PR Checks
on: [pull_request]
jobs:
commit-lint:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-commit-lint
cancel-in-progress: true
name: Commitlint
steps:
- uses: actions/checkout@v4
- uses: wagoid/commitlint-github-action@v5
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
name: Lint
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install Dependencies
run: |
pnpm install -w
- name: lint
run: |
pnpm lint:ci
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-pr-build
cancel-in-progress: true
strategy:
matrix:
node-version: [18.x]
name: Build & Test
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install & Build
run: |
pnpm install
- name: Test
run: |
pnpm test:all --skip-nx-cache
- name: Publint
run: |
pnpm publint:all
- name: Are The Types Wrong
run: |
pnpm attw:all
tsdoc-check:
runs-on: ubuntu-latest
name: Check TSDoc Links
concurrency:
group: ${{ github.ref }}-tsdoc-check
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Check TSDoc Links
run: npx tsdoc-link-check --patterns packages/**