chore(deps): bump codeinwp/themeisle-sdk from 3.3.48 to 3.3.50 #444
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |