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

updated ticketopen limit from 3 to 5 #294

updated ticketopen limit from 3 to 5

updated ticketopen limit from 3 to 5 #294

Workflow file for this run

name: Lint # name of the action (displayed in the github interface)
on: # event list
push:
branches:
- main
pull_request: # on a pull request to each of these branches
branches:
- main
env: # environment variables (available in any part of the action)
NODE_VERSION: 18
jobs: # list of things to do
linting:
name: Linting # job name (unique id)
runs-on: ubuntu-latest # on which machine to run
steps: # list of steps
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: yarn
- name: Code Linting
run: npm run lint