Skip to content

SD-107645 | Products ingesting incorrectly #53

SD-107645 | Products ingesting incorrectly

SD-107645 | Products ingesting incorrectly #53

Workflow file for this run

name: Test External
on:
push:
branches:
- main
pull_request:
jobs:
install-and-test:
runs-on: ubuntu-20.04
timeout-minutes: 20
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install
run: yarn install --frozen-lockfile --ignore-optional
- name: Bootstrap
run: yarn bootstrap --no-ci
- name: Test
run: yarn test
- name: Build
run: yarn build