-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added js and html linting workflow files
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Lint html files | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
paths: | ||
- 'package.json' | ||
- '.htmlhintrc' | ||
- 'src/**/*.html' | ||
pull_request: | ||
paths: | ||
- 'package.json' | ||
- '.htmlhintrc' | ||
- 'src/**/*.html' | ||
|
||
env: | ||
NODE_VERSION: 18 | ||
|
||
jobs: | ||
lint-html: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install latest nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Install faster package manager | ||
run: npm i -g pnpm | ||
|
||
- name: Install dependencies from package.json | ||
run: pnpm install | ||
|
||
- name: Run html lint specified in package.json | ||
run: pnpm run lint:html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Lint javascript files | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
paths: | ||
- 'package.json' | ||
- '.eslintignore' | ||
- '.eslintrc.yaml' | ||
- '.htmlhintrc' | ||
- 'src/**/*.js' | ||
pull_request: | ||
paths: | ||
- 'package.json' | ||
- '.eslintignore' | ||
- '.eslintrc.yaml' | ||
- '.htmlhintrc' | ||
- 'src/**/*.js' | ||
|
||
env: | ||
NODE_VERSION: 18 | ||
|
||
jobs: | ||
lint-js: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install latest nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Install faster package manager | ||
run: npm i -g pnpm | ||
|
||
- name: Install dependencies from package.json | ||
run: pnpm install | ||
|
||
- name: Run lint specified in package.json | ||
run: pnpm lint:js |