Skip to content

chore(deps-dev): bump typescript from 5.0.2 to 5.1.6 #53

chore(deps-dev): bump typescript from 5.0.2 to 5.1.6

chore(deps-dev): bump typescript from 5.0.2 to 5.1.6 #53

Workflow file for this run

name: Unit Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@main
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format code
run: pnpm format
- name: Run tests
run: pnpm test