mirror of
https://github.com/streamwall/streamwall.git
synced 2026-01-27 07:22:50 -05:00
19 lines
327 B
YAML
19 lines
327 B
YAML
name: Node.js CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 18.x
|
|
- run: npm install
|
|
- run: npm run start-local
|
|
- run: npm test -- --silent=false
|
|
env:
|
|
CI: true
|