Create npm-publish.yml

This commit is contained in:
Dave Horton
2020-12-14 08:34:32 -05:00
committed by GitHub
parent 03d6591f8a
commit 1da347c479

25
.github/workflows/npm-publish.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: CI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
ports:
- 3306
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test