Skip to content

Commit 2de9ef2

Browse files
committed
✨ general: Add action for performing tests
1 parent c753353 commit 2de9ef2

File tree

3 files changed

+35
-10
lines changed

3 files changed

+35
-10
lines changed

.gitgo

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
{
22
"current_issue": {
3-
4-
"number": "22",
3+
"number": "53",
54
"labels": [
65
"cli",
76
"enhancement"
87
],
9-
"title": "Emoji top 3 recommendations"
8+
"title": "Empty specific attributes from .gitgo before pushing it on github"
109
},
1110
"commit_guidelines": [
1211
"fix #"
1312
],
1413
"custom_guidelines": false,
15-
"selected_commit_type": "✨ Adding a new user-facing feature",
14+
"selected_commit_type": "♿ Improving accessibility",
1615
"emojis": {
1716
"initial_commit": "tada",
1817
"feature": "sparkles",
@@ -31,14 +30,14 @@
3130
"wip": "construction"
3231
},
3332
"existing_branches": [
34-
35-
"Empty-attributes-github",
3633
"main",
34+
"test-branch-gen",
3735
"test-commit-gen"
3836
],
3937
"current_branch": [
40-
"Emoji-recommendations"
38+
"Empty-attributes-github"
4139
],
42-
"current_commit_message": "✨ fix #22 Emoji top 3 recommendations",
43-
"use_emojis": true
44-
}
40+
"current_commit_message": "♿ fix #53 Empty specific attributes from .gitgo before pushing it on github",
41+
"use_emojis": true,
42+
"commit_config": false
43+
}

.github/workflows/nodejstests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Node.js CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
node-version: [8.x, 10.x, 12.x]
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- name: Install Dependencies
20+
run: npm install
21+
- name: Install jest
22+
run: npm install jest
23+
- name: Run Tests
24+
run: npm test
25+
env:
26+
CI: true
File renamed without changes.

0 commit comments

Comments
 (0)