The makefile for the client is not as useful as a install script - Updated test action to install client deps. - Added new action to specifically test the install script for client
26 lines
470 B
YAML
26 lines
470 B
YAML
name: DRB Build Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test_setup:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Test setup script
|
|
run: |
|
|
# Run the setup script with sudo
|
|
sudo bash setup_script.sh |