ci: install gh-pages #57
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: | |
permissions: write-all | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
env: | |
JVM_OPTS: -Xmx3200m | |
DETECT_CHROMEDRIVER_VERSION: "true" | |
PROJECT_PATH: ./scratch-blocks | |
# container: | |
# image: python:2.7.18-buster | |
# options: --user root | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Chrome Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgconf-2-4 libatk1.0-0 libatk-bridge2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libgbm-dev libnss3-dev libxss-dev libasound2 | |
- 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' | |
- uses: browser-actions/setup-chrome@v1 | |
with: | |
chrome-version: stable | |
id: setup-chrome | |
- run: | | |
echo Installed chromium version: ${{ steps.setup-chrome.outputs.chrome-version }} | |
${{ steps.setup-chrome.outputs.chrome-path }} --version | |
- name: Install Chrome Driver | |
run: DETECT_CHROMEDRIVER_VERSION=true npm install chromedriver | |
- name: Install Node Dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run test:lint | |
- name: Run Tests | |
run: npm run test:messages | |
- name: Run Unit Tests | |
run: DISPLAY=:99 npm run test:unit | |
- run: npm install gh-pages | |
- name: Remove Closure App | |
run: rm -rf gh-pages/closure-library/scripts/ci/CloseAdobeDialog.exe | |
- name: build? | |
run: gh-pages -t -d | |
- name: Deploy playground to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: gh-pages | |
full_commit_message: "Build for ${{ github.sha }} ${{ github.event.head_commit.message }}" |