Skip to content

fix(deps): update dependency starpc to v0.32.4 #552

fix(deps): update dependency starpc to v0.32.4

fix(deps): update dependency starpc to v0.32.4 #552

Workflow file for this run

name: Tests
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
# Builds images for target boards.
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
node: [21.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- 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: Test Go
run: make test
- name: Yarn install
run: yarn install
- name: Build Javascript
run: yarn run build
- name: Test Js
run: yarn test:js
- name: Lint Javascript
run: yarn run lint:js
- name: Lint Go
run: yarn run lint:go