Skip to content

chore(deps): update pnpm to v10.5.0 (#811) #1831

chore(deps): update pnpm to v10.5.0 (#811)

chore(deps): update pnpm to v10.5.0 (#811) #1831

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE: ghcr.io/${{ github.repository_owner }}/dotfiles
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
- uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6
with:
context: .
push: true
tags: ${{ env.IMAGE }}:${{ github.sha }}
- uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6
with:
context: .
push: true
tags: ${{ env.IMAGE }}:laetst
if: github.ref == 'refs/heads/main'
format:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: lua
cmd: |
stylua --check -g '*.lua' -- config/{.config,.hammerspoon}
- name: sh
cmd: |
shfmt -i 2 -d bin config/{.bin,.config/zsh} install
name: format-${{ matrix.name }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: aquaproj/aqua-installer@e2d0136abcf70b7a2f6f505720640750557c4b33 # v3.1.1
with:
aqua_version: v2.45.0
- run: ${{ matrix.cmd }}
node-tools-lockfile:
runs-on: ubuntu-latest
env:
WORK_DIR: config/.config/nvim/lua/plugins/lsp
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: pnpm/action-setup@v4
with:
package_json_file: ${{ env.WORK_DIR }}/package.json
run_install: |
cwd: ${{ env.WORK_DIR }}
args: [--frozen-lockfile, --strict-peer-dependencies]
update-aqua-checksums:
uses: ./.github/workflows/_update-aqua-checksum.yml
permissions:
contents: read
secrets:
gh-app-id: ${{secrets.UPDATE_AQUA_CHECKSUM_APP_ID}}
gh-app-private-key: ${{secrets.UPDATE_AQUA_CHECKSUM_APP_PRIVATE_KEY}}
if: github.event_name == 'pull_request'
status-check:
runs-on: ubuntu-latest
needs:
- build
- format
- node-tools-lockfile
- update-aqua-checksums
permissions: {}
if: failure()
steps:
- run: exit 1