chore(deps): bump pdf2pic from 2.1.4 to 3.0.1 #181
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
lint-and-test: | |
name: Lint and Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org/' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Code test | |
run: npm run test | |
release: | |
name: Release | |
env: | |
DIST_ARCHIVE_NAME: ${{ github.event.repository.name }}-dist | |
runs-on: ubuntu-latest | |
needs: [lint-and-test] | |
if: startsWith(github.ref, 'refs/tags/') | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org/' | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm install | |
npm run pkg | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | |
- name: Build changelog | |
id: build_changelog | |
uses: mikepenz/release-changelog-builder-action@v2.9.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
configuration: '.github/config/changelog_configuration.json' | |
ignorePreReleases: 'false' | |
- name: Archive Release | |
uses: papeloto/action-zip@v1 | |
with: | |
files: build/ READEME.md package.json LICENSE | |
recursive: false | |
dest: ${{ env.DIST_ARCHIVE_NAME }}-${{ steps.get_version.outputs.VERSION }}.zip | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
body: ${{steps.build_changelog.outputs.changelog}} | |
files: | | |
${{ env.DIST_ARCHIVE_NAME }}-${{ steps.get_version.outputs.VERSION }} | |
release/**/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.github_token }} | |
publish-npm: | |
name: Publish NPM | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
registry-url: 'https://registry.npmjs.org/' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Code test | |
run: npm run test | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | |
- name: Publish to NPM | |
id: publish | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: ./package.json | |
tag: latest | |
registry: https://registry.npmjs.org/ | |
access: public | |
check-version: true | |
- if: steps.publish.outputs.type != 'none' | |
run: | | |
echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}" | |
- name: Push Publish Message | |
uses: funnyzak/pushoo-action@main | |
with: | |
platforms: ifttt,bark | |
tokens: ${{ secrets.PUSH_TOKEN }} | |
content: | | |
# ${{github.repository}}:${{ steps.publish.outputs.version }} Npm Publish | |
## Npm Pakcge Link: https://www.npmjs.com/package/${{github.event.repository.name}} | |
options: '{"bark": { "url": "https://www.npmjs.com/package/${{github.event.repository.name}}" }}' | |
debug: false | |
push-release-message: | |
name: Push Release Message | |
runs-on: ubuntu-latest | |
needs: [release] | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Push Release Message | |
uses: funnyzak/pushoo-action@main | |
with: | |
platforms: ifttt,bark | |
tokens: ${{ secrets.PUSH_TOKEN }} | |
content: | | |
# ${{github.repository}} Released | |
options: '{"bark": { "url": "https://github.com/${{github.repository}}" }}' | |
debug: false |