Skip to content

Commit

Permalink
added workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Mustafiz04 committed Aug 7, 2023
1 parent abab0a1 commit da4855f
Show file tree
Hide file tree
Showing 4 changed files with 3,817 additions and 71 deletions.
11 changes: 11 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"env": {
"browser": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
}
}
27 changes: 27 additions & 0 deletions .github/workflows/code_syntax_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check Code Syntax

on:
push:
branches:
- '*'

jobs:
syntax-check:
name: Check Syntax
runs-on: ubuntu-latest

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

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

- name: Install dependencies
run: npm install

- name: Check syntax
run: npm run lint

Loading

0 comments on commit da4855f

Please sign in to comment.