From 00a96ebffa0da211e88920337a73d036f0754f3f Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Fri, 18 Aug 2023 05:51:49 -0700 Subject: [PATCH] run build before test --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5bf1165805..d43642eef5 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,8 @@ "homepage": "https://get.foundation/sites", "scripts": { "start": "gulp", - "test": "yarn test:sass && yarn test:javascript:units && yarn test:bundle", + "build": "gulp build", + "test": "yarn build && yarn test:sass && yarn test:javascript:units && yarn test:bundle", "test:single-process": "yarn test:sass && yarn test:javascript:units:single-process && yarn test:bundle:single-process", "test:ci": "yarn test:sass && yarn test:javascript:ci", "test:ci:single-process": "yarn test:sass && yarn test:javascript:ci:single-process",