Skip to content

Commit d3ed5b5

Browse files
authored
Create main.yml for CI/CD
1 parent 97312ac commit d3ed5b5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Lint
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
jobs:
7+
check:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Use Node.js
12+
uses: actions/setup-node@v1
13+
with:
14+
node-version: 18
15+
- name: Install modules
16+
run: npm install --ignore-scripts
17+
- name: Run Check
18+
run: npm run check

0 commit comments

Comments
 (0)