apple1js/.github/workflows/nodejs.yml

27 lines
467 B
YAML
Raw Normal View History

2019-11-23 18:49:25 +00:00
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2019-11-23 20:17:49 +00:00
node-version: [12.x]
2019-11-23 18:49:25 +00:00
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 ci
npm run build --if-present
npm test
env:
CI: true