tangled
alpha
login
or
join now
besaid.zone
/
create-atproto-app
2
fork
atom
A CLI for scaffolding ATProto web applications
2
fork
atom
overview
issues
pulls
pipelines
chore: stuff
besaid.zone
1 month ago
8e990de3
53c7b12b
verified
This commit was signed with the committer's
known signature
.
besaid.zone
SSH Key Fingerprint:
SHA256:Q4dc5PTI8DNTxJbH2bWsDeY6BXzfq0ce1XSA4H5Y3iI=
2/3
release.yml
failed
33s
test.yml
success
47s
typecheck.yml
success
47s
+7
-4
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
release.yml
lefthook.yml
+6
-3
.tangled/workflows/release.yml
···
14
14
steps:
15
15
- name: test
16
16
command: |
17
17
-
git config user.name "pluto[bot]"
18
18
-
git config user.email "me+pluto@dane.computer"
17
17
+
git config user.name "pluto[bot]"
18
18
+
git config user.email "me+pluto@dane.computer"
19
19
20
20
-
git config list
20
20
+
touch test.txt
21
21
+
git add .
22
22
+
git commit -m "test commit from release workflow"
23
23
+
git push
+1
-1
lefthook.yml
···
1
1
pre-commit:
2
2
jobs:
3
3
- name: format
4
4
-
run: pnpm fmt
4
4
+
run: pnpm fmt {staged_files}
5
5
exclude:
6
6
- "**/node_modules"
7
7
- "templates/**"