Update to Nuxt 3.14 and Replace npm with pnpm (#72)

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
Al Asad Nur Riyad
2024-11-09 03:18:21 +06:00
committed by GitHub
parent 32e4f6fe44
commit 9db5ae8103
49 changed files with 15735 additions and 20211 deletions

View File

@@ -14,21 +14,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Code
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
node-version: 22
cache: 'pnpm'
- name: Install dependency
run: npm ci
- name: Install dependencies
run: pnpm install
- name: Check Linting
run: npm run lint
run: pnpm run lint
- name: Check Format
run: pnpm run format
- name: Playgourd build check
run: npm run build
run: pnpm run build