We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f088a3a commit b96b76bCopy full SHA for b96b76b
.github/workflows/main.yml
@@ -5,10 +5,11 @@ jobs:
5
steps:
6
- uses: actions/checkout@v6
7
- uses: actions/setup-node@v6
8
+ - run: apt-get install -y chromium
9
- name: dependencies
10
run: npm install
11
- run: mkdir -p dist
12
- name: build
13
run: npx rollup index.js -o dist/aria.js -f umd -n aria
14
- name: test
- run: npx mocha-headless-chrome -a no-sandbox -f test/index.html
15
+ run: PUPPETEER_EXECUTABLE_PATH=$(which chromium) npx mocha-headless-chrome -a no-sandbox -f test/index.html
0 commit comments