Skip to content

Fixed the Cookbook systemd unit to use Environment= for NODE_ENV #2097

Fixed the Cookbook systemd unit to use Environment= for NODE_ENV

Fixed the Cookbook systemd unit to use Environment= for NODE_ENV #2097

Workflow file for this run

name: test
on: [push, pull_request, workflow_dispatch]
jobs:
test:
name: Node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm run build
run: npm run build
- name: npm test
run: npm run test