Skip to content

v0.80.2

v0.80.2 #83

Workflow file for this run

name: build
on:
push:
branches: [ beta ]
pull_request:
branches: [ beta ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
emsdk-version: [3.1.28]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: build emulators
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: sudo apt-get -yqq update
- run: sudo apt-get install -yq --no-install-recommends cmake ninja-build
- run: npm install -g yarn
- run: yarn
- run: yarn run eslint src --ext ts,tsx --max-warnings 0
- run: yarn run eslint test --ext ts,tsx --max-warnings 0
- run: yarn run tsc --noemit
- run: git clone https://github.com/emscripten-core/emsdk.git
- run: cd emsdk && ./emsdk install ${{ matrix.emsdk-version }} && ./emsdk activate ${{ matrix.emsdk-version }} && cd ..
- run: source ./emsdk/emsdk_env.sh && yarn run gulp
- name: upload
uses: actions/[email protected]
with:
name: 'dist'
path: 'dist'