Skip to content

Add hidden form field #3849

Add hidden form field

Add hidden form field #3849

Workflow file for this run

name: Test JS
on:
pull_request:
types: [ opened, synchronize, ready_for_review ]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
name: JS Test
steps:
- uses: actions/checkout@master
with:
persist-credentials: false
- name: Build files using ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Lint js files
run: |
npm install -g npm
npm ci
npm run lint
env:
CI: true