-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 837 Bytes
/
e2e_test.yml
File metadata and controls
35 lines (30 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: E2E_Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
E2E_Test:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run install.sh
run: ./install.sh
- name: Verify symlinks
run: |
echo "=== Checking symlinks ==="
ls -la ~/.zshrc
ls -la ~/.zprofile
ls -la ~/.config/starship.toml
echo "=== Symlink targets ==="
readlink ~/.zshrc
readlink ~/.zprofile
- name: Verify shell syntax
run: |
echo "=== Checking shell syntax ==="
bash -n home/.zshrc || echo "Note: zsh-specific syntax may differ"
bash -n home/.zprofile
bash -n scripts/install-homebrew.sh
bash -n scripts/install-uv.sh