Skip to content

Commit

Permalink
added_sunity_check
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 26, 2024
1 parent 9d7e467 commit 849b575
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
File renamed without changes.
22 changes: 22 additions & 0 deletions .github/workflows/sanity.check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: PR Sanity Check

on: pull_request

jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Packages
run: |
npm install
- name: Lint check
run: |
npm run lint
- name: Lint check
run: |
npm run test
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@
"license": "ISC",
"description": "",
"lint-staged": {
"src/**/*.js": "eslint"
"*.html": "prettier --write",
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/cli": "^7.25.9",
Expand Down

0 comments on commit 849b575

Please sign in to comment.