Skip to content

Commit fa96268

Browse files
author
alexey.mozheyko
committed
Add Github actions
1 parent 78a32e0 commit fa96268

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: editorconfig-check
2+
3+
on: [push]
4+
5+
jobs:
6+
unit-tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: '14'
13+
- run: npm ci
14+
- run: npm run editorconfig:check

.github/workflows/unit-tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: unit-tests
2+
3+
on: [push]
4+
5+
jobs:
6+
unit-tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: '14'
13+
- run: npm ci
14+
- run: npm run test:unit

0 commit comments

Comments
 (0)