Skip to content

Commit 2b5de94

Browse files
committed
Added GH workflow
1 parent 185d486 commit 2b5de94

File tree

11 files changed

+1686
-625
lines changed

11 files changed

+1686
-625
lines changed

.github/workflows/main.yml

+17
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+
build:
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)