Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tlouisse committed Nov 18, 2024
1 parent e398601 commit d261a98
Show file tree
Hide file tree
Showing 4 changed files with 141 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/guidepup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: SR automation

# on:
# push:
# branches:
# - master

jobs:
voiceover:
name: SR auto
runs-on: macos-latest
steps:
- name: Setup Environment
uses: guidepup/setup-action

- name: Run test
run: node guidepup.test.cjs
12 changes: 12 additions & 0 deletions guidepup.test.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const { voiceOver } = require('@guidepup/guidepup');

(async () => {
// Start VoiceOver.
await voiceOver.start();

// Move to the next item.
await voiceOver.next();

// Stop VoiceOver.
await voiceOver.stop();
})();
114 changes: 111 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"@changesets/cli": "^2.27.9",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@custom-elements-manifest/to-markdown": "^0.1.0",
"@guidepup/guidepup": "^0.24.0",
"@lit-labs/testing": "^0.2.5",
"@open-wc/building-rollup": "^2.2.3",
"@open-wc/eslint-config": "^12.0.3",
Expand Down

0 comments on commit d261a98

Please sign in to comment.