Skip to content

Add safeguards to guard against unexpected types (in the subscriptions totals template) #1610

Add safeguards to guard against unexpected types (in the subscriptions totals template)

Add safeguards to guard against unexpected types (in the subscriptions totals template) #1610

Workflow file for this run

name: JS linting and tests
on:
pull_request
jobs:
lint:
name: JS linting
runs-on: ubuntu-latest
steps:
# clone the repository
- uses: actions/checkout@v2
# enable dependencies caching
- uses: actions/cache@v2
with:
path: ~/.cache/composer/
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
- uses: actions/cache@v2
with:
path: ~/.npm/
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
# install dependencies and run linter
- run: npm ci && npm run lint:js # && npm run lint:css