Skip to content

chore(deps): update all dependencies #1455

chore(deps): update all dependencies

chore(deps): update all dependencies #1455

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:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
node: [22.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ matrix.go }}
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn install
run: yarn install
- name: Cache tools
uses: actions/cache@v4
with:
path: |
./hack/bin
key: ${{ runner.os }}-aptre-tools-${{ hashFiles('hack/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: Test integration
run: yarn run integration
- name: Depcheck Js
run: yarn run deps