Skip to content

fix actor allocation warnings #17

fix actor allocation warnings

fix actor allocation warnings #17

Workflow file for this run

---
name: Build
on:
push:
branches: [master]
paths:
- src/**
- package.json
- yarn.lock
- rollup.config.js
pull_request:
branches: [master]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16.0, 18.0]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run build
run: yarn build