Skip to content

updated CONTRIBUTING.md (#19) #110

updated CONTRIBUTING.md (#19)

updated CONTRIBUTING.md (#19) #110

Workflow file for this run

# This file was automatically generated by sbt-github-actions using the
# githubWorkflowGenerate task. You should add and commit this file to
# your git repository. It goes without saying that you shouldn't edit
# this file by hand! Instead, if you wish to make changes, you should
# change your sbt build configuration to revise the workflow description
# to meet your needs, then regenerate this file.
name: CI
on:
pull_request:
branches: ['**']
push:
branches: ['**']
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest]
java: [temurin@8]
runs-on: ubuntu-latest
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java (temurin@8)
if: matrix.java == 'temurin@8'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm ci
working-directory: ./spark-ui
- name: Run frontend unit tests
run: npm run test
working-directory: ./spark-ui
- name: Build and test plugin
run: sbt +test
working-directory: ./spark-plugin