build(deps): bump the production-dependencies group with 10 updates #169
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: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install devbox | |
uses: jetpack-io/[email protected] | |
with: | |
enable-cache: 'true' | |
project-path: './' | |
- name: Build necessary parts for Linting | |
run: devbox run -- pnpm build:eslint-config | |
- name: Run Lint | |
run: devbox run -- pnpm lint | |
- name: Check Format | |
run: devbox run -- pnpm format | |
- name: Run Tests | |
run: devbox run -- pnpm test | |
- name: Run Type Check | |
run: devbox run -- pnpm type-check | |
- name: Build Project | |
run: devbox run -- pnpm build |