Skip to content

Commit 0e07511

Browse files
committed
Added CI
1 parent e74dd4f commit 0e07511

File tree

8 files changed

+4086
-126
lines changed

8 files changed

+4086
-126
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- "**"
6+
7+
jobs:
8+
check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 16.x
15+
16+
- run: npm install --frozen-lockfile
17+
- run: npm run ci

0 commit comments

Comments
 (0)