V2 invoices plugin #414
Workflow file for this run
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: 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: '16' | |
- 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-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-myparcel', | |
'vendure-plugin-webhook', | |
# 'vendure-plugin-admin-ui-helpers', | |
# 'vendure-plugin-order-export', | |
# 'vendure-plugin-shipping-by-weight-and-country', | |
# 'vendure-plugin-stock-monitoring', | |
# 'vendure-plugin-sendcloud', | |
# 'vendure-plugin-metrics', | |
# 'vendure-plugin-limit-variant-per-order', | |
# 'vendure-plugin-variant-bulk-update', | |
'vendure-plugin-stripe-subscription', | |
# 'vendure-plugin-customer-managed-groups', | |
'vendure-plugin-picqer', | |
# 'vendure-plugin-popularity-scores', | |
# 'vendure-plugin-modify-customer-orders', | |
] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Build test-utils | |
run: cd packages/test && yarn | |
- name: Build utils | |
run: cd packages/util && yarn | |
- name: Build | |
run: cd packages/${{ matrix.package }} && yarn && yarn build | |
- name: Test | |
run: cd packages/${{ matrix.package }} && yarn test |