Skip to content

chore(deps): update all dependencies #373

chore(deps): update all dependencies

chore(deps): update all dependencies #373

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@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
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