diff options
author | Nicholas H.Tollervey <ntoll@ntoll.org> | 2022-08-19 14:58:58 +0100 |
---|---|---|
committer | Nicholas H.Tollervey <ntoll@ntoll.org> | 2022-08-22 12:03:39 +0100 |
commit | af54d2ce9f923eba06b19bddb784a1c9da228347 (patch) | |
tree | 2f546c12def404b89d86a59deb71e2d6967fc45b /.github | |
parent | c616721b1afe176c8d760afc15a93621d411c1dc (diff) | |
download | micropython-af54d2ce9f923eba06b19bddb784a1c9da228347.tar.gz micropython-af54d2ce9f923eba06b19bddb784a1c9da228347.zip |
javascript: Rename this port to 'webassembly'.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ports_webassembly.yml (renamed from .github/workflows/ports_javascript.yml) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ports_javascript.yml b/.github/workflows/ports_webassembly.yml index 244dc966aa..861039c0fc 100644 --- a/.github/workflows/ports_javascript.yml +++ b/.github/workflows/ports_webassembly.yml @@ -1,4 +1,4 @@ -name: javascript port +name: webassembly port on: push: @@ -9,7 +9,7 @@ on: - 'py/**' - 'extmod/**' - 'lib/**' - - 'ports/javascript/**' + - 'ports/webassembly/**' jobs: build: @@ -17,8 +17,8 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install packages - run: source tools/ci.sh && ci_javascript_setup + run: source tools/ci.sh && ci_webassembly_setup - name: Build - run: source tools/ci.sh && ci_javascript_build + run: source tools/ci.sh && ci_webassembly_build - name: Run tests - run: source tools/ci.sh && ci_javascript_run_tests + run: source tools/ci.sh && ci_webassembly_run_tests |