lava-oushudb-dt-sql-parser/.github/workflows/nodejs.yml

26 lines
449 B
YAML
Raw Normal View History

2019-11-15 11:14:42 +08:00
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2021-01-05 15:29:18 +08:00
node-version: [10.x, 12.x, 14.x]
2019-11-15 11:14:42 +08: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: |
2019-11-15 11:17:22 +08:00
npm install
2019-11-15 11:14:42 +08:00
npm test
env:
CI: true