🔥 Remove dependencies shields.io and update Twitter to X #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DevOps | |
on: | |
[push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and test | |
strategy: | |
matrix: | |
node-version: [14.X, 16.x, 18.X] | |
steps: | |
- name: Git checkout | |
uses: actions/[email protected] | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
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: Build .min.js file | |
run: npm run build | |
- name: Run tests (QA and unit tests) | |
run: npm test | |
- name: SonarCloud Scan | |
if: (matrix.node-version == '16.x') && (github.event_name != 'pull_request') | |
uses: sonarsource/sonarcloud-github-action@master | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Archive artifacts | |
if: matrix.node-version == '16.x' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: jquery.async-gravatar-${{ github.sha }}.min.js | |
path: dist/*.min.js | |
- name: Package | |
if: matrix.node-version == '16.x' && (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/v')) | |
run: npm run release | |
- name: Archive package | |
if: matrix.node-version == '16.x' && (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/v')) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: jquery-async-gravatar-${{ github.sha }}.tar.gz | |
path: build/*.tar.gz | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: contains(github.ref, 'refs/tags/v') | |
name: Release on GitHub and NPM | |
steps: | |
- name: Git checkout | |
uses: actions/[email protected] | |
- name: Set env | |
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- 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@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} |