Skip to content

Commit

Permalink
Merge 94326ca into 604197a
Browse files Browse the repository at this point in the history
  • Loading branch information
etimberg committed Dec 12, 2020
2 parents 604197a + 94326ca commit 2ab714b
Show file tree
Hide file tree
Showing 5 changed files with 148 additions and 35 deletions.
50 changes: 50 additions & 0 deletions .github/release-drafter.yml
@@ -0,0 +1,50 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: 'Breaking Changes'
labels:
- 'breaking change'
- title: 'Enhancements'
labels:
- 'type: enhancement'
- title: 'Performance'
labels:
- 'type: performance'
- title: 'Bugs Fixed'
labels:
- 'type: bug'
- title: 'Types'
labels:
- 'type: types'
- title: 'Documentation'
labels:
- 'type: documentation'
- title: 'Development'
labels:
- 'type: chore'
exclude-labels:
- 'type: infrastructure'
change-template: '- #$NUMBER $TITLE'
change-title-escapes: '\<*_&`#@'
version-resolver:
major:
labels:
- 'breaking change'
minor:
labels:
- 'type: enhancement'
patch:
labels:
- 'type: bug'
- 'type: chore'
- 'type: types'
default: patch
template: |
# Essential Links
* [npm](https://www.npmjs.com/package/chartjs-chart-smith)
* [Docs](https://www.chartjs.org/chartjs-chart-smith/index)
$CHANGES
Thanks to $CONTRIBUTORS
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Expand Up @@ -25,13 +25,9 @@ jobs:
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Setup xvfb
run: |
Xvfb :99 -screen 0 1024x768x24 &
echo "::set-env name=DISPLAY:::99.0"
- run: npm install
- name: RUN CI
run: gulp test --coverage
run: xvfb-run --auto-servernum gulp test --coverage
- name: Publish Test Results
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
Expand Down
75 changes: 75 additions & 0 deletions .github/workflows/npmpublish.yml
@@ -0,0 +1,75 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package

on:
release:
types: [published]

jobs:
setup:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.trim.outputs.version }}
steps:
- id: trim
run: echo "::set-output name=version::${TAG:1}"
env:
TAG: ${{ github.event.release.tag_name }}

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
- name: Test
run: |
npm ci
xvfb-run --auto-servernum npm test
publish-npm:
needs: [test, setup]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: Setup and build
run: |
npm ci
npm install -g json
json -I -f package.json -e "this.version=\"$VERSION\""
json -I -f package-lock.json -e "this.version=\"$VERSION\""
npm run build
./scripts/docs-config.sh "${VERSION}"
npm run docs
npm run typedoc
npm pack
env:
VERSION: ${{ needs.setup.outputs.version }}
- name: Publish to NPM
run: ./scripts/publish.sh
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
VERSION: ${{ needs.setup.outputs.version }}
- name: Deploy Docs
run: ./scripts/deploy-docs.sh "$VERSION"
env:
GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }}
GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }}
VERSION: ${{ needs.setup.outputs.version }}
- name: Upload NPM package file
id: upload-npm-package-file
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ needs.setup.outputs.version }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ format('chartjs-chart-smith-{0}.tgz', needs.setup.outputs.version) }}
asset_name: ${{ format('chartjs-chart-smith-{0}.tgz', needs.setup.outputs.version) }}
asset_content_type: application/gzip
22 changes: 22 additions & 0 deletions .github/workflows/release-drafter.yml
@@ -0,0 +1,22 @@
name: Release Drafter

on:
push:
branches:
- master

jobs:
correct_repository:
runs-on: ubuntu-latest
steps:
- name: fail on fork
if: github.repository_owner != 'chartjs'
run: exit 1

update_release_draft:
needs: correct_repository
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit 2ab714b

Please sign in to comment.