We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17764f3 commit f2a1994Copy full SHA for f2a1994
2 files changed
.github/workflows/ci.yml
@@ -39,6 +39,15 @@ jobs:
39
with:
40
node-version: 'lts/*'
41
42
+ - name: Install prettier
43
+ run: npm install -g prettier
44
+
45
+ - name: Format Go files
46
+ run: find . -name '*.go' -exec gofmt -w {} \;
47
48
+ - name: Format markdown files
49
+ run: find . -name '*.md' -exec prettier -w {} \;
50
51
- name: Tidy Go modules
52
run: find . -name 'go.mod' -execdir go mod tidy \;
53
.github/workflows/claude.yml
@@ -49,6 +49,14 @@ jobs:
run: |
curl -s https://taskfile.dev/install.sh | sh -s -- -b /usr/local/bin v3.45.4
+ - name: Setup Node.js
+ uses: actions/setup-node@v5
54
+ with:
55
+ node-version: 'lts/*'
56
57
58
59
60
- name: Run Claude Code
61
id: claude
62
uses: anthropics/claude-code-action@beta
0 commit comments