Skip to content

Shrink inventory list max-height down to make room for new inventory-… #9

Shrink inventory list max-height down to make room for new inventory-…

Shrink inventory list max-height down to make room for new inventory-… #9

Workflow file for this run

name: Continuous Integration and Deployment
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check types
run: deno check src/
- name: Check format
run: deno fmt --check src/
- name: Check lint
run: deno lint .
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
env:
REPO_NAME: ${{ github.event.repository.name }}
steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- run: deno task build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
# Upload dist repository
path: "./dist"
- id: deployment
uses: actions/deploy-pages@v4