2024-04-28 17:07:25 +01:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- feature/*
|
|
|
|
- hotfix/*
|
|
|
|
- renovate/*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
environment: stage
|
|
|
|
|
2024-04-28 17:15:18 +01:00
|
|
|
runs-on: node
|
2024-04-28 17:07:25 +01:00
|
|
|
|
|
|
|
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
|