summaryrefslogtreecommitdiffstats
path: root/.build.yml
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-09-07 18:56:58 +0200
committerAhmed AbdelHalim <[email protected]>2025-09-07 18:56:58 +0200
commite54cef2fae80d759c495544f04afe50385c36bce (patch)
treedaa57ad138987d48d0caf8f3d38f2cc468a5b6c9 /.build.yml
parent8c558da0ec37750c57f2e74afe4ca5006480afcf (diff)
Add css/js lint dependencies on CI
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
index 3a511aa..a9a5d93 100644
--- a/.build.yml
+++ b/.build.yml
@@ -10,6 +10,8 @@ packages:
- go
- curl
- make
+ - nodejs
+ - npm
tasks:
- setup: |
# This is for not having to cd into the <repo> for each task
@@ -18,6 +20,9 @@ tasks:
- deps: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin
golangci-lint --version
+ node --version
+ npm --version
+ npx --version
- lint: |
make deps
make verify