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:
2022-12-19 22:26:34 +08:00
runs-on: ubuntu-20.04
2020-02-21 01:49:22 +08:00
strategy:
matrix:
2022-12-19 22:17:58 +08:00
node-version: [16.x, 18.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