Skip to content

Order Client Loading States #569

Order Client Loading States

Order Client Loading States #569

Workflow file for this run

name: Test packages
on: ['pull_request']
jobs:
lint:
name: Prettier formatting and linting check
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install root dependencies
run: yarn
- name: Is formatted and linted
run: yarn lint:check
test:
name: ${{ matrix.package }}
runs-on: ubuntu-latest
defaults:
run:
shell: bash
strategy:
matrix:
package:
[
'vendure-order-client',
'vendure-plugin-admin-ui-helpers',
'vendure-plugin-coinbase',
'vendure-plugin-customer-managed-groups',
'vendure-plugin-dutch-postalcode',
'vendure-plugin-e-boekhouden',
'vendure-plugin-goedgepickt',
'vendure-plugin-google-cloud-tasks',
'vendure-plugin-google-storage-assets',
'vendure-plugin-invoices',
'vendure-plugin-limit-variant-per-order',
'vendure-plugin-metrics',
'vendure-plugin-modify-customer-orders',
'vendure-plugin-multiserver-db-sessioncache',
'vendure-plugin-myparcel',
'vendure-plugin-order-export',
'vendure-plugin-picqer',
'vendure-plugin-popularity-scores',
'vendure-plugin-sendcloud',
'vendure-plugin-shipping-by-weight-and-country',
'vendure-plugin-stock-monitoring',
'vendure-plugin-stripe-subscription',
'vendure-plugin-variant-bulk-update',
'vendure-plugin-webhook',
]
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies with Yarn workspaces
run: yarn
- name: Build
run: cd packages/${{ matrix.package }} && yarn build
- name: Test
run: cd packages/${{ matrix.package }} && yarn test