programmingfonts/.github/workflows/nodejs.yml

25 lines
424 B
YAML
Raw Normal View History

---
2019-12-04 20:43:21 +01:00
name: Node CI
on: [push]
jobs:
build:
2022-12-28 16:39:08 +01:00
runs-on: macos-latest
2019-12-04 20:43:21 +01:00
strategy:
matrix:
2022-12-28 16:51:35 +01:00
node-version: [18.x]
2019-12-04 20:43:21 +01: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
2023-07-03 20:43:00 +02:00
run: make
env:
CI: true