Skip to content

switch parseJSON to JSON.parse #387

switch parseJSON to JSON.parse

switch parseJSON to JSON.parse #387

Workflow file for this run

name: JavaScript Testing
on:
push:
branches:
- master
pull_request:
paths:
- 'webpack/**'
- 'package.json'
- '.github/workflows/js_tests.yml'
env:
RAILS_ENV: test
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: restore node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-modules-${{ matrix.node-version }}-${{ hashFiles('package.json') }}
- name: Npm install
run: npm install
- name: Run plugin linter
run: npm run lint
- name: Run plugin tests
run: npm run test