Skip to content

Commit

Permalink
ci: install chrome part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron de las Alas committed Oct 12, 2023
1 parent 2be43ce commit 54308d6
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,26 @@ jobs:
runs-on: ubuntu-latest
env:
JVM_OPTS: -Xmx3200m
DETECT_CHROMEDRIVER_VERSION: "true"
container:
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v3
- name: Check Python version
run: python --version
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
- run: chrome --version
# - name: Check Python version
# run: python --version
# - name: Setup Java
# uses: actions/setup-java@v3
# with:
# distribution: 'temurin'
# java-version: 17
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install Node Dependencies
run: npm ci
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
with:
version: 'latest'
- run: chrome --version
# - name: Install Node Dependencies
# run: npm ci

0 comments on commit 54308d6

Please sign in to comment.