add lua_call, lua_callk api #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: master | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup emsdk | |
uses: mymindstorm/setup-emsdk@v11 | |
with: | |
version: 3.1.9 | |
- name: Use Node.js 12.13.1 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.13.1 | |
registry-url: "https://registry.npmjs.org" | |
- run: npm ci | |
- run: npm run complete-build | |
- run: npm run test |