chore(deps): update pnpm to v8.8.0 - autoclosed #1624
This file contains 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: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: 'Test: node-20, ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Set node version to 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Versions | |
run: | | |
echo "pnpm: $(pnpm --version)" | |
echo "npm : $(npm --version)" | |
echo "node: $(node --version)" | |
echo "process.versions:" | |
node -p process.versions | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check | |
run: pnpm run build | |
- name: Test types | |
run: pnpm run typecheck | |
- name: Test | |
run: pnpm run test | |
lint: | |
runs-on: ubuntu-latest | |
name: 'Lint: node-20, ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Set node version to 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Prepare | |
run: pnpm install --frozen-lockfile | |
- name: Lint | |
run: pnpm run lint | |
- name: Check formatting | |
run: pnpm prettier --check . | |
audit: | |
runs-on: ubuntu-latest | |
name: 'Audit: node-20, ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Set node version to 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Prepare | |
run: pnpm install --frozen-lockfile | |
- name: Audit production | |
run: pnpm audit --prod | |
- name: Audit all | |
continue-on-error: true | |
run: pnpm audit | |
- name: Check outdated dependencies | |
continue-on-error: true | |
if: github.ref == 'refs/heads/main' | |
run: pnpm outdated --long |