Skip to content

chore(deps-dev): bump nuxt from 3.11.2 to 3.12.4 #731

chore(deps-dev): bump nuxt from 3.11.2 to 3.12.4

chore(deps-dev): bump nuxt from 3.11.2 to 3.12.4 #731

Workflow file for this run

name: ci
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
- name: Use .npmrc
uses: bduff9/[email protected]
with:
dot-npmrc: ${{ secrets.DOT_NPMRC }}
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 'latest'
- name: Setup node env πŸ—
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Cache node_modules πŸ“¦
uses: actions/[email protected]
with:
path: ~/.pnpm
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: pnpm install
- name: Generate before lint
run: pnpm run generate
- name: Run linter πŸ‘€
run: pnpm run lint:fix