Skip to content

Commit

Permalink
Merge branch 'develop' into fix#6328
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamprakash123 authored Oct 25, 2023
2 parents 1a5036d + 3c56058 commit 00a1539
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Lint Code Base

on:
pull_request:
branches:
- develop
- master
merge_group:

jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Run lint
run: npm run lint

0 comments on commit 00a1539

Please sign in to comment.