chore(deps): bump next from 14.2.4 to 14.2.14 #99
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: | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Export | |
run: pnpm export | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: DevChum | |
path: extensions | |
- name: Lint | |
run: pnpm lint | |
- name: Check Formatting | |
run: pnpm prettier --check . |