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

27 lines
465 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-02-07 13:12:21 +08:00
node-version: [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 }}
2021-01-05 19:06:43 +08:00
- name: npm install, test, and build
2019-11-15 11:14:42 +08:00
run: |
2019-11-15 11:17:22 +08:00
npm install
2019-11-15 11:14:42 +08:00
npm test
2021-01-05 19:06:43 +08:00
npm run build
2019-11-15 11:14:42 +08:00
env:
CI: true