Skip to content

Commit 9d69761

Browse files
committedAug 31, 2020
Migrated to typescript
1 parent de2f6b8 commit 9d69761

File tree

79 files changed

+7930
-1472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+7930
-1472
lines changed
 

‎.eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
root: true,
3+
parser: "@typescript-eslint/parser",
4+
plugins: ["@typescript-eslint", "inclusive-language"],
5+
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
6+
rules: {
7+
"inclusive-language/use-inclusive-words": "error",
8+
},
9+
};

‎.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ jobs:
88
- name: Checkout
99
uses: actions/checkout@v1
1010
- name: Build
11-
run: docker run -v ${PWD}:/opt/esp32-javascript -w /opt/esp32-javascript -t espressif/idf idf.py build
11+
run: |
12+
docker build -t esp32-javascript:latest -f tools/Dockerfile .
13+
docker run -t esp32-javascript:latest bash -c '. ./tools/install-node.sh; idf.py build'

0 commit comments

Comments
 (0)
Please sign in to comment.