Skip to content

Update to Nuxt 3.14 and Replace npm with pnpm #16

Update to Nuxt 3.14 and Replace npm with pnpm

Update to Nuxt 3.14 and Replace npm with pnpm #16

Workflow file for this run

# This workflow will do a clean installation of node dependencies, check linting and build
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install dependency
run: pnpm ci
- name: Check Linting
run: pnpm run lint
- name: Check Format
run: pnpm run format
- name: Playgourd build check
run: pnpm run build