File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Merge checks
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+
12
+ strategy :
13
+ matrix :
14
+ node-version : [12.x]
15
+
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+
19
+ - name : Use Node.js ${{ matrix.node-version }}
20
+ uses : actions/setup-node@v3
21
+ with :
22
+ node-version : ${{ matrix.node-version }}
23
+
24
+ - name : Build
25
+ run : |
26
+ npm install
27
+ npm run build
28
+
29
+ - name : Get version
30
+ run : echo "::set-output name=version::v$(./ci/getVersion.sh)"
31
+ id : version
32
+
33
+ - name : Verify version
34
+ run : |
35
+ ./ci/verifyVersion.sh ${{ steps.version.outputs.version }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " adminator" ,
3
- "version" : " 2.0.1 " ,
3
+ "version" : " 2.0.2 " ,
4
4
"private" : true ,
5
5
"description" : " HTML Admin Template" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments