Skip to content

Add shared GitHub Actions workflow for ruby #19

Add shared GitHub Actions workflow for ruby

Add shared GitHub Actions workflow for ruby #19

Workflow file for this run

name: JS
on:
pull_request:
paths:
- 'webpack/**'
- 'package.json'
- '.github/workflows/js_ci.yml'
jobs:
test_js:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [12]
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Npm install
run: |
npm install
- name: Run plugin linter
run: |
npm run lint
- name: Run plugin tests
run: |
npm run test