Skip to content

build: rollback to emsdk@2 #94

build: rollback to emsdk@2

build: rollback to emsdk@2 #94

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Integration Tests
run: cd test && npm install && npm test