chore(deps): update nuxtjs monorepo to v4 (major) #818
This file contains hidden or 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 | |
permissions: {contents: read} | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f | |
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda | |
name: Install pnpm | |
with: | |
version: 9.15.4 | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 | |
with: | |
node-version: 22 | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm dev:prepare | |
- run: pnpm prepack | |
- run: pnpm lint | |
- run: pnpm test:types |