From daa7d8879fdbd50cf908718e06d266befa78c636 Mon Sep 17 00:00:00 2001 From: Matt Karl Date: Thu, 23 Apr 2020 17:23:35 -0700 Subject: [PATCH] Add GitHub Actions --- .github/workflows/nodejs.yml | 24 ++++++++++++++++++++++++ README.md | 2 ++ package.json | 1 + 3 files changed, 27 insertions(+) create mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 0000000..6118f2e --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,24 @@ +name: Node.js CI +on: + push: + branches: [ '*' ] + release: + types: [ 'created' ] + pull_request: + branches: [ '*' ] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [ 10.x, 12.x ] + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: npm ci + - name: Built and Test + run: npm test \ No newline at end of file diff --git a/README.md b/README.md index 2bc907d..0557b32 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # PixiJS HTMLText +[![Node.js CI](https://github.com/pixijs/pixi-html-text/workflows/Node.js%20CI/badge.svg)](https://github.com/pixijs/pixi-html-text/actions?query=workflow%3A%22Node.js+CI%22) + An alternative to `PIXI.Text` that works with PixiJS v5 (both WebGL and Canvas), however, it has some advantages: * Supports HTML tags for styling such as ``, or ``, as well as `` diff --git a/package.json b/package.json index 4564b41..f0f8b69 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "build:dev": "rollup -c", "demo": "run-p watch serve", "lint": "eslint src", + "test": "run-s lint build", "postversion": "git push && git push --tags", "prepublish": "run-s lint clean build", "docs": "jsdoc -c jsdoc.json -R README.md",