Skip to content

Commit ada31a2

Browse files
committed
chore: extend .github settings
1 parent 996c437 commit ada31a2

File tree

6 files changed

+39
-61
lines changed

6 files changed

+39
-61
lines changed

.github/FUNDING.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: metcoder95

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/feature_request.md

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

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [16.x, 18.x]
9+
node: [14.x, 16.x, 18.x]
1010
name: Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v1
@@ -15,6 +15,4 @@ jobs:
1515
with:
1616
node-version: ${{ matrix.node }}
1717
- run: npm install
18-
- run: npm run lint:ci
1918
- run: npm run test:ci
20-
- run: npm run typescript

.github/workflows/pre-release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Pre-Release
2+
on:
3+
push:
4+
tags:
5+
- 'v*.*.*-beta**'
6+
- 'v*.*.*-rc**'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
name: Pre-Release Creation
14+
steps:
15+
- uses: actions/checkout@v1
16+
- uses: ncipollo/release-action@v1
17+
with:
18+
prerelease: true
19+
bodyFile: "CHANGELOG.md"

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
on:
3+
push:
4+
tags:
5+
- 'v[0-9]+.[0-9]+.[0-9]+'
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write
12+
name: Release Creation
13+
steps:
14+
- uses: actions/checkout@v1
15+
- uses: ncipollo/release-action@v1
16+
with:
17+
bodyFile: "CHANGELOG.md"
18+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)