Skip to content

ROU-3748: Add client action to apply conditional format to the aggregate row #1173

ROU-3748: Add client action to apply conditional format to the aggregate row

ROU-3748: Add client action to apply conditional format to the aggregate row #1173

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
branches: [ dev, master ]
pull_request:
branches: [ dev, master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
eslint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "13.x"
- name: NPM install
run: npm install
- name: ESLINT
run: npm run lint