Skip to content

chore(deps): update all dependencies #576

chore(deps): update all dependencies

chore(deps): update all dependencies #576

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.
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Update yarn and npm
run: npm i -g yarn npm
- name: Enable workspaces
run: yarn config set workspaces-experimental true
- name: Install and build chonky
run: cd ./packages/chonky && yarn install
- name: Install and build chonky-icon-fontawesome
run: cd ./packages/chonky-icon-fontawesome && yarn install