fix(deps): update npm dependencies (major) (major) #1145
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: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| install: | |
| name: 📦 Install node modules | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [18] | |
| pnpm-version: [8] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - uses: pnpm/action-setup@v2.4.0 | |
| with: | |
| version: ${{ matrix.pnpm-version }} | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'pnpm' | |
| node-version: ${{ matrix.node-version }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| id: cache-node-modules | |
| with: | |
| path: | | |
| node_modules | |
| key: modules-${{ hashFiles('pnpm-lock.yaml') }} | |
| - name: Install Dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: pnpm i | |
| build: | |
| name: 🚧 Nuxt build | |
| needs: install | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [18] | |
| pnpm-version: [7] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - uses: pnpm/action-setup@v2.4.0 | |
| with: | |
| version: ${{ matrix.pnpm-version }} | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'pnpm' | |
| node-version: ${{ matrix.node-version }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| node_modules | |
| key: modules-${{ hashFiles('pnpm-lock.yaml') }} | |
| - name: 🛠 Nuxt Build | |
| run: pnpm build | |
| generate: | |
| name: 🚧 Nuxt generate | |
| needs: install | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [18] | |
| pnpm-version: [7] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - uses: pnpm/action-setup@v2.4.0 | |
| with: | |
| version: ${{ matrix.pnpm-version }} | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'pnpm' | |
| node-version: ${{ matrix.node-version }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| node_modules | |
| key: modules-${{ hashFiles('pnpm-lock.yaml') }} | |
| - name: 🛠 Nuxt Generate | |
| run: pnpm generate | |
| lint: | |
| name: 🚧 Lint Check | |
| needs: install | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [18] | |
| pnpm-version: [7] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - uses: pnpm/action-setup@v2.4.0 | |
| with: | |
| version: ${{ matrix.pnpm-version }} | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'pnpm' | |
| node-version: ${{ matrix.node-version }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| node_modules | |
| key: modules-${{ hashFiles('pnpm-lock.yaml') }} | |
| - name: 💪 Lint | |
| run: pnpm lint |