Skip to content

chore(deps): update all dependencies #155

chore(deps): update all dependencies

chore(deps): update all dependencies #155

Workflow file for this run

name: Tests
on:
push:
branches: [ "aperture" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "aperture" ]
# Builds images for target boards.
permissions:
contents: read
jobs:
integration:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x, 21.x]
timeout-minutes: 10
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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: Depcheck
# run: yarn run deps
- name: Build Javascript
run: yarn run build
# - name: Test Js
# run: yarn run test
# - name: Lint Javascript
# run: yarn run lint