Fixes to layout when incrementally added items are less than a row. #74
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: User Interface Tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- packages/user-interface/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- packages/user-interface/** | |
workflow_dispatch: | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.15.5 | |
- name: Get pnpm cache directory | |
id: pnpm-cache-dir | |
run: echo "::set-output name=dir::$(pnpm cache dir)" | |
- name: Cache pnpm modules | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.pnpm-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run tests | |
working-directory: packages/user-interface | |
run: pnpm test |