Skip to content

modified webhook code to take req object #4

modified webhook code to take req object

modified webhook code to take req object #4

Workflow file for this run

name: Linter
on:
push:
branches:
- main
jobs:
eslint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: |
cd client
npm install
- name: Run eslint
run: |
cd client
npm run lint -- --fix