Skip to content

release: v0.32.7

release: v0.32.7 #1255

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
# Builds images for target boards.
permissions:
contents: read
jobs:
integration:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
node: [21.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ matrix.go }}
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn install
run: yarn install
# - name: Depcheck
# run: yarn run deps
- name: Build Javascript
run: yarn run build
- name: Lint Javascript
run: yarn run lint:js
- name: Test Js
run: yarn test:js
- name: Lint Go
run: yarn run lint:go
- name: Test Go
run: make test
- name: Test integration of Go and TypeScript
run: yarn integration