Skip to content

Commit

Permalink
Adding CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Bentley authored and Tony Bentley committed Dec 30, 2023
1 parent e846372 commit 4c7482d
Show file tree
Hide file tree
Showing 4 changed files with 12,243 additions and 6,738 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: React/NodeJS CI

on:
push:
branches: [ 0.0.1 ]
pull_request:
branches: [ main, master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 19.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Build artifact
run: npm run build
run: rm public
run: mv build public
run: ls -la
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)

# signalk-multiplex-viewer
A plugin for tracing multiplexing routes and events
Loading

0 comments on commit 4c7482d

Please sign in to comment.