heti/.github/workflows/nodejs.yml

32 lines
539 B
YAML
Raw Normal View History

2020-02-21 01:49:22 +08:00
---
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
node-version: [10.x, 12.x]
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 and test
run: |
npm ci
npm test
env:
CI: true
- name: npm build
run: npm run build
env:
CI: true