blob: a44d3d257b7c485fdbb799996302fafa2d7eca7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env bash
#
# ci wrapper for building the website. build commands below
#
set -euo pipefail
function build_site {
pnpm install --frozen-lockfile
pnpm run lint
pnpm run check
pnpm run build
}
# get the root directory of the project
# (so the parent directory of this script's parent directory)
REPO_DIR="$(readlink -f "$0" | xargs dirname)"/..
cd "$REPO_DIR"
build_site
|