diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 53b912b..eb3cf8b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -63,8 +63,8 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.23.2" - - name: Validate contributors + go-version: "1.25.0" + - name: Validate Reademde run: go build ./cmd/readmevalidation && ./readmevalidation - name: Remove build file artifact run: rm ./readmevalidation Signed-off-by: Muhammad Atif Ali <me@matifali.dev>
31 lines
883 B
JSON
31 lines
883 B
JSON
{
|
|
"name": "registry",
|
|
"scripts": {
|
|
"fmt": "bun x prettier --write . && terraform fmt -recursive -diff",
|
|
"fmt:ci": "bun x prettier --check . && terraform fmt -check -recursive -diff",
|
|
"terraform-validate": "./scripts/terraform_validate.sh",
|
|
"test": "./scripts/terraform_test_all.sh",
|
|
"update-version": "./update-version.sh",
|
|
"validate-readme": "go build ./cmd/readmevalidation && ./readmevalidation"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.21",
|
|
"bun-types": "^1.2.21",
|
|
"dedent": "^1.6.0",
|
|
"gray-matter": "^4.0.3",
|
|
"marked": "^16.2.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-sh": "^0.18.0",
|
|
"prettier-plugin-terraform-formatter": "^1.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"prettier": {
|
|
"plugins": [
|
|
"prettier-plugin-sh",
|
|
"prettier-plugin-terraform-formatter"
|
|
]
|
|
}
|
|
}
|