Skip to content

Commit 1478185

Browse files
add github actions workflow
1 parent 0e68a75 commit 1478185

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Build
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
timeout-minutes: 5
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v1
10+
- name: Build
11+
run: docker run -v ${PWD}:/opt/esp32-javascript -w /opt/esp32-javascript -t espressif/idf idf.py build

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# esp32-javascript
22

3+
![](https://github.com/marcelkottmann/esp32-javascript/workflows/Build/badge.svg)
4+
35
"Lightweight" JS interpreter for ESP32. Provides JS-based eventloop implementation
46
and native asynchronous network and timer functions.
57
Because of the limited memory on ESP32-WROOM modules, the full functionality is currently only realizable on ESP32-WROVER modules, that include additional 4MB of SPIRAM memory.

0 commit comments

Comments
 (0)