Skip to content

feat(layout): enhance content right side resizing functionality #13

feat(layout): enhance content right side resizing functionality

feat(layout): enhance content right side resizing functionality #13

Workflow file for this run

name: Test
on:
push:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 22.x
- name: Cache yarn dependencies
uses: actions/cache@v3
with:
path: |
~/.cache/yarn
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test