Skip to content

Commit c135516

Browse files
feat(ci): #1 added ci workflow for linting
1 parent c661079 commit c135516

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: ci
2+
run-name: Continuous Integration
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: "18"
15+
- run: npm install -g yarn
16+
- run: yarn
17+
- run: yarn lint

0 commit comments

Comments
 (0)