Skip to content

Commit

Permalink
Added GH Action coding-style.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tg666 committed Jun 19, 2024
1 parent 9971ba7 commit 5d3eb02
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/coding-style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Coding style

on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main

jobs:
eslint:
name: Eslint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: npm install

- name: Eslint
run: npm run eslint

0 comments on commit 5d3eb02

Please sign in to comment.