Add a GitHub Workflow to validate JS bindings
This commit is contained in:
17
.github/actions/setup-js/action.yml
vendored
Normal file
17
.github/actions/setup-js/action.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Setup JavaScript envirionment
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Install Node
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 18.x
|
||||
|
||||
- name: Install emsdk
|
||||
uses: ./.github/actions/install-emsdk
|
||||
|
||||
- name: yarn install
|
||||
shell: bash
|
||||
run: yarn install --frozen-lockfile
|
||||
working-directory: javascript
|
Reference in New Issue
Block a user