mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-06 01:45:37 -05:00
18 lines
294 B
YAML
18 lines
294 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 test -- --silent=false
|
|
env:
|
|
CI: true
|