badgen/.github/workflows/nodejs.yml

27 wiersze
503 B
YAML

name: Node CI
on: [push]
jobs:
test:
strategy:
matrix:
node: [12, 14, 16, 18]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: use Node.js ${{ matrix.node }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Run npm ci
run: npm ci
- name: Run npm build
run: npm run build --ifpresent
- name: Run npm test
run: npm test