Skip to content

Commit 765000f

Browse files
committed
update
1 parent 597d480 commit 765000f

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ jobs:
7979
restore-keys: ${{ runner.os }}-pnpm-
8080

8181
- name: 💅🏻 Type Check, Lint and format
82-
run: pnpm run checkAll
82+
run: pnpm run check:all
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"
4+
5+
if [[ $VERCEL_GIT_COMMIT_REF =~ ^(renovate|gh-pages) ]] ; then
6+
# Don't build
7+
echo "🛑 - Build cancelled"
8+
exit 0;
9+
10+
else
11+
# Proceed with the build
12+
echo "✅ - Build can proceed"
13+
exit 1;
14+
fi

0 commit comments

Comments
 (0)