Skip to content

chore(deps): update all dependencies #2227

chore(deps): update all dependencies

chore(deps): update all dependencies #2227

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: [24.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: ${{ matrix.go }}
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.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: Check goreleaser
run: make release-check
# Issue: https://github.com/agnivade/wasmbrowsertest/pull/72/files
# Issue: https://github.com/agnivade/wasmbrowsertest/issues/60
# Remove the comment once fixed.
#
# - name: Install chrome
# uses: browser-actions/setup-chrome@latest
# - name: Test with chrome
# run: make test-browser || true