heti/.github/workflows/nodejs.yml

32 lines
553 B
YAML
Raw Normal View History

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