Skip to content

feat: inventory adjustment #427

feat: inventory adjustment

feat: inventory adjustment #427

Workflow file for this run

# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Run lint
run: bun run lint
- name: Run tests
run: bun run test
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Run build
run: bun run build