Skip to content

build(deps): update pnpm to v9 #1521

build(deps): update pnpm to v9

build(deps): update pnpm to v9 #1521

name: Synchronize
on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
jobs:
test-commits:
name: Test / Commits
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checking out the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setting up PNPM
uses: pnpm/action-setup@v2
- name: Setting up Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Installing Node.js dependencies
run: pnpm install --frozen-lockfile
- name: Retrieving node_modules cache
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: node_modules/.cache
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-${{ env.cache-name }}-
- name: Linting commits
uses: wagoid/commitlint-github-action@v5
with:
configFile: node_modules/@jpapini/commitlint-config/index.js
failOnWarnings: true
test-linting:
name: Test / Linting
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checking out the repository
uses: actions/checkout@v3
- name: Setting up PNPM
uses: pnpm/action-setup@v2
- name: Setting up Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Installing Node.js dependencies
run: pnpm install --frozen-lockfile
- name: Retrieving node_modules cache
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: node_modules/.cache
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-${{ env.cache-name }}-
- name: Linting source code
run: pnpm run lint