Skip to content

Commit a31c92f

Browse files
authored
Merge pull request #659 from parallaxinc/develop
Release 1.6.0
2 parents 7f4644b + dfda1b2 commit a31c92f

30 files changed

+18888
-4994
lines changed

.github/workflows/solo-develop.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Solo Test
2+
3+
on:
4+
push:
5+
branches: [ develop, main ]
6+
pull_request:
7+
branches: [ develop ]
8+
9+
jobs:
10+
test:
11+
name: Run Solo Tests
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [16.x]
17+
18+
steps:
19+
- name: Checkout source code
20+
uses: actions/checkout@v2
21+
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
27+
- name: Run npm install
28+
run: npm ci
29+
30+
- name: Build SCSS
31+
run: npx sass src/scss/main.scss dist/main.css
32+
33+
- name: Run build process
34+
run: npm run build --if-present
35+
36+
- name: Run embedded tests
37+
run: npm test

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ lib
2727
.cache
2828

2929
# SASS outputs
30-
sass/*.css
31-
sass/*.map
30+
src/scss/*.css
31+
src/scss/*.map

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
version: ~> 1.0
22
os: linux
3-
dist: bionic
3+
dist: focal
44
addons:
55
snaps:
66
- name: node
7-
channel: 10/stable
7+
channel: 16/stable
88
confinement: classic
99

1010
# The minimal image contains:
@@ -17,7 +17,7 @@ addons:
1717
language: minimal
1818

1919
node_js:
20-
- 12
20+
- 16
2121

2222
env:
2323
- TRAVIS_CI=true

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Parallax robots and sensors.
55

66
[https://solo.parallax.com/](https://solo.parallax.com)
77

8-
*develop* [![Build Status](https://travis-ci.org/parallaxinc/solo.svg?branch=develop)](https://travis-ci.org/parallaxinc/solo)
8+
[![Actions Status](https://github.com/parallaxinc/solo/workflows/Solo%20Test/badge.svg)](https://github.com/parallaxinc/solo/actions)
99

1010
### Supported Browsers
1111
Chrome - v84+

build_propc.py

-206
This file was deleted.

0 commit comments

Comments
 (0)