From 4fcb63c8deba5ec077cba0a4c71afa82a39ec81d Mon Sep 17 00:00:00 2001 From: SemianiakaVY Date: Thu, 17 Sep 2026 21:07:29 +0000 Subject: [PATCH] chore(template): sync .w4c/workflows/ci-build.sh --- .w4c/workflows/ci-build.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .w4c/workflows/ci-build.sh diff --git a/.w4c/workflows/ci-build.sh b/.w4c/workflows/ci-build.sh new file mode 100644 index 0000000..61d2aca --- /dev/null +++ b/.w4c/workflows/ci-build.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +set -euo pipefail +npm ci +echo '→ lint' +npm run lint +echo '→ test' +npm test -- --run +echo '→ build' +npm run build