Skip to content

chore(deps): bump codeinwp/themeisle-sdk from 3.3.48 to 3.3.50 #444

chore(deps): bump codeinwp/themeisle-sdk from 3.3.48 to 3.3.50

chore(deps): bump codeinwp/themeisle-sdk from 3.3.48 to 3.3.50 #444

Workflow file for this run

name: Test JS
on:
push:
branches-ignore:
- "master"
jobs:
jslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
name: JS Test
steps:
- name: Checkout source code
uses: actions/checkout@master
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build source
run: yarn run build
- name: Run lint checks
run: yarn run lint