Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Add workflow to update issue and PR status on GH project board #182

Add workflow to update issue and PR status on GH project board

Add workflow to update issue and PR status on GH project board #182

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
- 'master'
- 'zowe-v?-lts'
- 'next'
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) && !contains(github.event.head_commit.message, '[ci skip]')
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install Node Package Dependencies
run: npm ci
- name: Lint
run: npm run lint