Ardu-Stim/.github/workflows/install.yml

38 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2024-03-24 19:36:48 -07:00
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'UI' # Here the path to the folder where package-lock.json is located.
2024-03-24 19:36:48 -07:00
strategy:
matrix:
2024-05-15 21:17:49 -07:00
node-version: [14.x, 16.x, 18.x, 20.x]
2024-03-24 19:36:48 -07:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
2024-03-24 19:46:14 -07:00
- uses: awalsh128/cache-apt-pkgs-action@latest
2024-03-24 19:51:13 -07:00
with:
packages: build-essential libudev-dev
version: 1.0
2024-03-24 19:36:48 -07:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
2024-05-15 21:17:49 -07:00
- run: npm install @electron/rebuild -g
2024-03-24 19:36:48 -07:00
- run: npm install