Skip to content

Add support for breakpoints for Octopus 2 #69

Add support for breakpoints for Octopus 2

Add support for breakpoints for Octopus 2 #69

Workflow file for this run

name: Silicon8 Jest tests
on:
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21']
node-version: [latest]
tinygo-version: ['0.30.0']
steps:
# Check out repository and run the tests
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
# See if we can build the project
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: silicon8/go.sum
- uses: acifani/setup-tinygo@v2
with:
tinygo-version: ${{ matrix.tinygo-version }}
- name: Build binaries
run: |
npm run build