Skip to content

[#327] UI refactoring (Software update page) #96

[#327] UI refactoring (Software update page)

[#327] UI refactoring (Software update page) #96

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- '**'
pull_request:
branches:
- 'master'
jobs:
build:
name: Run npm test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test