From 87e34d2f3d3eecb9216a838b8b8cdf241cb550e1 Mon Sep 17 00:00:00 2001 From: Ham Vocke Date: Thu, 30 Nov 2023 19:43:38 +0100 Subject: [PATCH] add github actions workflow with vhs test --- .github/workflows/vhs.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/vhs.yml diff --git a/.github/workflows/vhs.yml b/.github/workflows/vhs.yml new file mode 100644 index 0000000..78b6992 --- /dev/null +++ b/.github/workflows/vhs.yml @@ -0,0 +1,15 @@ +name: vhs +on: + push + +jobs: + vhs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: charmbracelet/vhs-action@v1 + with: + path: 'test/demo.tape' + - name: Diff, Bart, Diff + run: diff vhs-recording.txt test/expected/vhs-recording.txt +