Skip to content

Commit 78e7552

Browse files
authored
Merge pull request #12 from Nesopie/feat/ci
feat: ci
2 parents 8342fe7 + 71426a3 commit 78e7552

File tree

4 files changed

+8919
-15
lines changed

4 files changed

+8919
-15
lines changed

.github/workflows/main_ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Run Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
unit:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 18
17+
registry-url: https://registry.npmjs.org/
18+
- run: npm ci
19+
- run: npm run unit
20+
format:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v3
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: 18
27+
registry-url: https://registry.npmjs.org/
28+
- run: npm ci
29+
- run: npm run standard

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)