This repository has been archived by the owner on Jul 14, 2024. It is now read-only.
chore(deps): update dependency pnpm to v8.15.1 #215
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4.1.1 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: false | |
- name: Install dependencies | |
run: pnpm i --no-frozen-lockfile | |
- name: Prisma | |
run: pnpm prisma generate | |
- name: Find Dead Code | |
run: pnpm find-deadcode | |
- name: Linting | |
run: pnpm lint | |
- name: Test | |
run: pnpm test | |
- name: Build | |
run: pnpm build |