Skip to content

build(deps): bump get-func-name from 2.0.0 to 2.0.2 #17

build(deps): bump get-func-name from 2.0.0 to 2.0.2

build(deps): bump get-func-name from 2.0.0 to 2.0.2 #17

Workflow file for this run

name: CI (Typecheck & Lint)
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Linting check
run: pnpm run lint
- name: Prettier check
run: pnpm run prettier:check
- name: Typecheck app
run: pnpm run typecheck
- name: Tests
run: pnpm run test