Skip to content

Commit 258effe

Browse files
committed
add github action
1 parent 38adde2 commit 258effe

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -992,3 +992,23 @@ jobs:
992992
fi
993993
done
994994
echo "No incompatible licenses detected"
995+
meticulous:
996+
runs-on: ubuntu-latest
997+
steps:
998+
- name: "Checkout Repository"
999+
uses: actions/checkout@v4
1000+
- name: Setup Node
1001+
uses: ./.github/actions/setup-node
1002+
- name: Build
1003+
working-directory: ./site
1004+
run: pnpm build
1005+
- name: Serve
1006+
working-directory: ./site
1007+
run: |
1008+
pnpm dev &
1009+
sleep 5
1010+
- name: Run Meticulous tests
1011+
uses: alwaysmeticulous/report-diffs-action/cloud-compute@v1
1012+
with:
1013+
api-token: ${{ secrets.METICULOUS_API_TOKEN }}
1014+
app-url: "http://127.0.0.1:8080/"

0 commit comments

Comments
 (0)