Skip to content

Fixes #37749 - Update to Patternfly5 #36

Fixes #37749 - Update to Patternfly5

Fixes #37749 - Update to Patternfly5 #36

Workflow file for this run

name: JavaScript Testing
on:
pull_request:
paths:
- "webpack/**"
- "package.json"
- ".github/workflows/js_tests.yml"
jobs:
test_js:
runs-on: ubuntu-latest
steps:
- name: Checkout plugin
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install plugin npm dependencies
run: npm install
- name: Run plugin linter
run: npm run lint
- name: Run plugin tests
run: npm run test
- name: Publish Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}