Skip to content

DINT-1692: Do not send shoppingCart context for product-view event #361

DINT-1692: Do not send shoppingCart context for product-view event

DINT-1692: Do not send shoppingCart context for product-view event #361

Workflow file for this run

name: pull-request
on:
pull_request:
branches:
- main
jobs:
pull_request:
name: pull-request
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: cache
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: yarn test