mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-08-12 18:03:40 +00:00
335b5618f1
Bump actions/checkout from 6.0.0 to 6.0.2
24 lines
592 B
YAML
24 lines
592 B
YAML
name: Check @showbridge/webui builds
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build-webui:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'npm'
|
|
cache-dependency-path: 'package-lock.json'
|
|
|
|
- name: Install Node.js dependencies
|
|
run: npm ci
|
|
|
|
- run: npm run build
|