Skip to content

Commit

Permalink
here
Browse files Browse the repository at this point in the history
  • Loading branch information
redJ4y committed Aug 19, 2024
1 parent f5e0b99 commit aa3def0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Setup Chrome
- id: setup-chrome
- uses: browser-actions/setup-chrome@latest
with:
chrome-version: latest
install-chromedriver: true
- run: |
echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
- run: echo "CHROMEDRIVER_PATH=$(which chromedriver)" >> $GITHUB_ENV
- name: Set Chrome and ChromeDriver paths
run: |
echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
echo "CHROMEDRIVER_PATH=${{ steps.setup-chrome.outputs.chromedriver-path }}" >> $GITHUB_ENV
- run: npm ci
- run: npx grunt
- run: npm test
Expand Down

0 comments on commit aa3def0

Please sign in to comment.