Skip to content

Commit b87d685

Browse files
committed
GH action
1 parent 53054cb commit b87d685

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci-dev.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: DEV pipeline
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
check:
10+
name: Source revision
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: '20.10.0'
18+
19+
- run: npm ci
20+
- run: npm run format:check
21+
- run: npm run lint:check
22+
- run: npm run test

0 commit comments

Comments
 (0)