Skip to content

chore: bump for new release check. #10

chore: bump for new release check.

chore: bump for new release check. #10

Workflow file for this run

name: Unit Test, Lint, and Build
on:
push:
branches:
- "**"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
with:
version: 9
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: "pnpm"
- name: Install Dependencies
run: pnpm i
- name: Check Linting
run: pnpm lint:check
- name: Check Tests
run: pnpm test
- name: Check Build
run: pnpm build