ci: try adding dependencies #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-scratch-blocks | |
on: | |
push: | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
env: | |
JVM_OPTS: -Xmx3200m | |
DETECT_CHROMEDRIVER_VERSION: "true" | |
container: | |
image: python:2.7.18-buster | |
steps: | |
- uses: actions/checkout@v3 | |
- run: apt install libnss3-dev libgdk-pixbuf2.0-dev libgtk-3-dev libxss-dev | |
# - 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: Setup Chrome | |
uses: browser-actions/setup-chrome@v1 | |
with: | |
chrome-version: latest | |
- run: chrome --version | |
# - name: Install Node Dependencies | |
# run: npm ci |