Skip to content

Show suspended hosts on user status events #935

Show suspended hosts on user status events

Show suspended hosts on user status events #935

Workflow file for this run

name: Build Angular
on:
push:
branches:
- '**'
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm install --force
- name: npm run lint
run: |
npm run lint
- name: npm run test
run: |
npm test -- --watch=false --browsers=ChromeHeadless
- name: npm run build
run: |
npm run build