From 11d3cb92d678f35d2ff5873cc5c3bfa2c4951899 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Wed, 5 May 2021 14:50:15 -0500 Subject: [PATCH] split tests --- .../workflows/{test.yml => test-browser.yml} | 7 +++--- .github/workflows/test-node.yml | 24 +++++++++++++++++++ README.md | 2 +- 3 files changed, 28 insertions(+), 5 deletions(-) rename .github/workflows/{test.yml => test-browser.yml} (79%) create mode 100644 .github/workflows/test-node.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test-browser.yml similarity index 79% rename from .github/workflows/test.yml rename to .github/workflows/test-browser.yml index 53c6914c..eeac1867 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test-browser.yml @@ -1,4 +1,4 @@ -name: Test +name: Test Browser on: push: @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [14.x, 15.x] + node-version: [15.x] steps: - uses: actions/checkout@v2 @@ -21,5 +21,4 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm install - - run: npm run build - - run: npm test + - run: npm run test:browser diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml new file mode 100644 index 00000000..e44e15fa --- /dev/null +++ b/.github/workflows/test-node.yml @@ -0,0 +1,24 @@ +name: Test NodeJS + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [15.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm run test:node diff --git a/README.md b/README.md index d2d5bf1a..decfceb8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Financial Contributors on Open Collective](https://opencollective.com/konva/all/badge.svg?label=financial+contributors)](https://opencollective.com/konva) [![npm version](https://badge.fury.io/js/konva.svg)](http://badge.fury.io/js/konva) -[![Build Status](https://github.com/konvajs/konva/actions/workflows/test.yml/badge.svg)](https://github.com/konvajs/konva/actions/workflows/test.ym) [![CDNJS version](https://img.shields.io/cdnjs/v/konva.svg)](https://cdnjs.com/libraries/konva) +[![Build Status](https://github.com/konvajs/konva/actions/workflows/test-browser.yml/badge.svg)](https://github.com/konvajs/konva/actions/workflows/test-browser.ym) [![CDNJS version](https://img.shields.io/cdnjs/v/konva.svg)](https://cdnjs.com/libraries/konva) Konva is an HTML5 Canvas JavaScript framework that enables high performance animations, transitions, node nesting, layering, filtering, caching, event handling for desktop and mobile applications, and much more.