Skip to content

Commit a874907

Browse files
committed
Added main action for CI
1 parent beae96f commit a874907

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Main
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- main
8+
9+
concurrency: ${{ github.workflow }}-${{ github.ref }}
10+
11+
jobs:
12+
lint:
13+
name: Lint
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
18+
with:
19+
node-version: 18.x
20+
- name: Run eslint
21+
run:
22+
npm ci
23+
npm run lint

0 commit comments

Comments
 (0)