verdaccio-ui/.github/workflows/nodejs.yml

20 lines
307 B
YAML
Raw Normal View History

2019-08-10 18:54:27 +07:00
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
version: 10.x
- name: npm install, build, and test
run: |
npm install
2019-08-11 02:19:03 +07:00
npm build