Merge branch 'master' into el-constructor-overload

This commit is contained in:
Francisco Hodge
2020-03-12 19:25:18 -04:00
committed by GitHub
7 changed files with 30 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: Build
on: [push, pull_request]
on: [push]
jobs:
build:
+24
View File
@@ -0,0 +1,24 @@
name: Build PR
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build, and test
run: |
npm install
npm run start -- --testMode
npm run demo
npm run coverage
env:
CI: true
+1 -1
View File
@@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v2.28.27
* simple-keyboard v2.28.28
* https://github.com/hodgef/simple-keyboard
*
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v2.28.27
* simple-keyboard v2.28.28
* https://github.com/hodgef/simple-keyboard
*
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "simple-keyboard",
"version": "2.28.27",
"version": "2.28.28",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "simple-keyboard",
"version": "2.28.27",
"version": "2.28.28",
"description": "On-screen Javascript Virtual Keyboard",
"main": "build/index.js",
"types": "build/index.d.ts",