-
-
Notifications
You must be signed in to change notification settings - Fork 1
160 lines (152 loc) · 5 KB
/
devops.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
name: DevOps
on:
[push, pull_request]
env:
nodeLastVersion: '20.X'
jobs:
##############################################################################
# Test application
#
test_nodejs:
runs-on: ubuntu-latest
name: Build and test
strategy:
matrix:
node-version: [18.X, 20.X, 21.X]
steps:
- name: Git checkout
uses: actions/checkout@v4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install globally grunt-cli
run: npm install -g grunt-cli
- name: Install other dependencies
run: npm install
- name: Run tests (QA and unit tests)
run: npm test
##############################################################################
# Markdownlint
#
test_markdownlint:
runs-on: ubuntu-latest
name: MarkdownLint
steps:
- name: Git checkout
uses: actions/checkout@v4.1.1
- name: markdownlint-cli
uses: nosborn/github-action-markdown-cli@v3.3.0
with:
files: "*.md"
config_file: ".markdownlint.yaml"
##############################################################################
# SonarCloud job
#
test_sonar:
if: github.event_name != 'pull_request'
needs: [
test_nodejs,
test_markdownlint
]
runs-on: ubuntu-latest
name: SonarCloud analyse
steps:
- name: Git checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.verbose=true
##############################################################################
# Build application
#
build:
if: github.ref == 'refs/heads/main' || ${{ startsWith(github.ref, 'refs/tags/v') }}
needs: [
test_sonar
]
runs-on: ubuntu-latest
name: Build and package
steps:
- name: Git checkout
uses: actions/checkout@v4.1.1
- name: Use Node.js ${{ env.nodeLastVersion }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.nodeLastVersion }}
- name: Install globally grunt-cli
run: npm install -g grunt-cli
- name: Install other dependencies
run: npm install
- name: Build .min.js file
run: npm run build
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: jquery.async-gravatar-${{ github.sha }}.min.js
path: dist/*.min.js
- name: Package
run: npm run release
- name: Archive package
uses: actions/upload-artifact@v4
with:
name: jquery-async-gravatar-${{ github.sha }}.tar.gz
path: build/*.tar.gz
##############################################################################
# Release application
#
release:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
needs: build
runs-on: ubuntu-latest
name: Release on GitHub and NPM
steps:
- name: Git checkout
uses: actions/checkout@v4.1.1
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install globally grunt-cli
run: npm install -g grunt-cli
- name: Install other dependencies
run: npm install
- name: Package
run: npm run release
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: true
prerelease: false
- name: Upload asset in GitHub release
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: build/jquery-async-gravatar-${{ env.RELEASE_VERSION }}.tar.gz
asset_name: jquery-async-gravatar-${{ env.RELEASE_VERSION }}.tar.gz
asset_content_type: application/tar+gzip
- name: Create NPM release
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}