Bump @babel/traverse from 7.17.9 to 7.23.2 #81
Workflow file for this run
This file contains 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: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
emsdk-version: [3.1.21] | |
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: 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' |