Skip to content

Commit acb8e96

Browse files
authored
Merge pull request #101 from kreuzerk/feature/A14
Feature/a14
2 parents 7b59c0d + 46fc49d commit acb8e96

File tree

11 files changed

+40239
-13614
lines changed

11 files changed

+40239
-13614
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [kreuzerk]

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: feature-branch
2+
on:
3+
push:
4+
branches:
5+
- '*'
6+
- '*/*'
7+
- '**'
8+
- '!master'
9+
jobs:
10+
CI:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v3
15+
- name: Install Node & NPM
16+
uses: actions/setup-node@v3
17+
- name: Install node modules
18+
run: npm ci
19+
- name: Test
20+
run: npm run test

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: release
2+
on:
3+
push:
4+
branches:
5+
- 'master'
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v3
12+
with:
13+
persist-credentials: false
14+
- name: Install Node & NPM
15+
uses: actions/setup-node@v3
16+
- name: Install node_modules
17+
run: npm ci
18+
- name: Test
19+
run: npm run test
20+
- name: Build
21+
run: npm run build
22+
- name: Release
23+
uses: cycjimmy/semantic-release-action@v3
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
26+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.releaserc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"pkgRoot": "dist",
3+
"plugins": [
4+
"@semantic-release/commit-analyzer",
5+
"@semantic-release/release-notes-generator",
6+
"@semantic-release/changelog",
7+
"@semantic-release/npm",
8+
["@semantic-release/exec", {
9+
"prepareCmd": "VERSION=${nextRelease.version} npm run bump-version"
10+
}],
11+
["@semantic-release/git", {
12+
"assets": ["package.json", "CHANGELOG.md"],
13+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
14+
}],
15+
"@semantic-release/github"
16+
]
17+
}

.travis.yml

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

angular.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,5 @@
107107
}
108108
}
109109
}
110-
},
111-
"defaultProject": "ng-sortgrid"
110+
}
112111
}

0 commit comments

Comments
 (0)