Skip to content

Commit 94b7b41

Browse files
committed
[Test] Create GitHub Actions configuration
1 parent a4a00b7 commit 94b7b41

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: main
2+
on: [push, pull_request, workflow_dispatch]
3+
4+
jobs:
5+
lint:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v3
10+
- run: npm install
11+
- run: npm ls
12+
- run: ./node_modules/.bin/eslint ./
13+
- run: ./node_modules/.bin/stylelint ./**/*.css ./**/*.html ./**/*.js

0 commit comments

Comments
 (0)