Skip to content

fix(deps): update all dependencies #1670

fix(deps): update all dependencies

fix(deps): update all dependencies #1670

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.24']
node: [23.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: ${{ matrix.go }}
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn install
run: yarn install
- name: Cache tools
uses: actions/cache@v4
with:
path: |
./.tools
key: ${{ runner.os }}-aptre-tools-${{ hashFiles('**/go.sum') }}
- name: Build Javascript
run: yarn run build
- name: Test Go
run: make test
- name: Test Js
run: yarn test:js
- name: Lint Js
run: yarn run lint:js
- name: Lint Go
run: yarn run lint:go
- name: Depcheck Js
run: yarn run deps
- name: Install chrome
uses: browser-actions/setup-chrome@latest
# Issue: https://github.com/agnivade/wasmbrowsertest/issues/60
# Remove the || true once fixed.
- name: Test with chrome
run: make test-browser || true