24 lines
No EOL
353 B
YAML
24 lines
No EOL
353 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- feature/*
|
|
- hotfix/*
|
|
- renovate/*
|
|
|
|
jobs:
|
|
build:
|
|
environment: stage
|
|
|
|
runs-on: node
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 18.x
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: npm test |