8000 Enhance CI with directory listing and Coder CLI steps · coder/setup-action@e6fd2b3 · GitHub
[go: up one dir, main page]

Skip to content

Commit e6fd2b3

Browse files
committed
Enhance CI with directory listing and Coder CLI steps
1 parent 2d040bb commit e6fd2b3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,17 @@ jobs:
1616
steps:
1717
- name: Checkout code
1818
uses: actions/checkout@v4
19+
20+
- name: List directory contents
21+
run: ls -R
1922

2023
- name: Run Setup Coder Action
2124
uses: ./action.yaml
2225
with:
2326
access_url: ${{ secrets.CODER_URL }}
24-
coder_session_token: ${{ secrets.CODER_SESSION_TOKEN }}
27+
coder_session_token: ${{ secrets.CODER_SESSION_TOKEN }}
28+
29+
- name: Run Coder CLI
30+
run: |
31+
coder version
32+
coder whoami

0 commit comments

Comments
 (0)
0