fix(deps): update all non-major dependencies #981
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: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build languages | |
run: pnpm build:languages | |
- name: Check formatting | |
run: pnpm format:check | |
- name: Typecheck | |
run: pnpm tsc | |
- name: Lint | |
run: pnpm lint | |
- name: Build | |
run: pnpm build | |
env: | |
ANALYZE: true | |
- name: Upload Statoscope report | |
uses: actions/upload-artifact@v4 | |
with: | |
path: .next/statoscope/ |