File tree Expand file tree Collapse file tree 6 files changed +39
-61
lines changed Expand file tree Collapse file tree 6 files changed +39
-61
lines changed Original file line number Diff line number Diff line change
1
+ github : metcoder95
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
strategy :
8
8
matrix :
9
- node : [16.x, 18.x]
9
+ node : [14.x, 16.x, 18.x]
10
10
name : Node ${{ matrix.node }}
11
11
steps :
12
12
- uses : actions/checkout@v1
15
15
with :
16
16
node-version : ${{ matrix.node }}
17
17
- run : npm install
18
- - run : npm run lint:ci
19
18
- run : npm run test:ci
20
- - run : npm run typescript
Original file line number Diff line number Diff line change
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"
Original file line number Diff line number Diff line change
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 }}
You can’t perform that action at this time.
0 commit comments