Files
klz-cables.com/.pnpm-store/v10/files/fa/b09639c6fa4c1e11a647ef25b96f2d0e2647cd5f99641371975d76087ea1665fa6ccc0e97dac04e71fb0ec998354f959bb48a3e1ebfcc6eca887570ffb2f8f
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

56 lines
1.3 KiB
Plaintext

language: node_js
node_js: node
matrix:
include:
# Node versions
- node_js: 0.10
- node_js: 0.12
- node_js: 1
- node_js: 2
- node_js: 3
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: 7
- node_js: 8
- node_js: 9
- node_js: 10
- node_js: 12
- node_js: node
# Browser testing
- env:
- AIRTAP_TEST=1
- SAUCE_USERNAME: parshap
addons:
sauce_connect: true
jwt:
- secure: C7rEgVrfIFovn763aFbXwZrEvTapI1MDDSk8nmU/nseC8Zb++6wCHNbKeGPLaY1kgRNOJbIo9SoHWUoLhGjjHXiNamQfoRPgeD3MXe1qhUskwxOeqpXOFfZv6KEyi3YNjPrjVTgLqK/mfmH2HxHr2HIldP15z40cc5+SLxKS2Fk=
hosts:
- airtap.local
# Include all possible file systems
# Normal builds use AUFS
# See http://docs.travis-ci.com/user/ci-environment/
# HFS+
- os: osx
# ext4
- sudo: required
dist: trusty
# SIMFS
- sudo: required
# NTFS
- os: windows
script: |
if [ -n "$AIRTAP_TEST" ]
then
# Work around this logic that doesn't work when using jwt by setting
# TRAVIS_SECURE_ENV_VARS=true.
# https://github.com/airtap/airtap/blob/00cfae3f38b59f5ff4001cb5e131964e72ab6f24/bin/airtap.js#L6
TRAVIS_SECURE_ENV_VARS=true npm run test-browser-sauce
else
npm test
fi