Skip to content

chore(deps): update app dependencies (#13) #36

chore(deps): update app dependencies (#13)

chore(deps): update app dependencies (#13) #36

Workflow file for this run

---
name: Fix linting issues
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
name: Are there issues that linters can fix? πŸ€”
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version: lts/*
- name: Authenticate with private NPM package @sanity/sanitype
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMRC }}" > ~/.npmrc
- run: pnpm install --ignore-scripts
- run: git restore pnpm-lock.yaml
- run: pnpm lint:fix
- uses: tibdex/github-app-token@0914d50df753bbc42180d982a6550f195390069f # v2
id: generate-token
with:
app_id: ${{ secrets.ECOSPARK_APP_ID }}
private_key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `pnpm lint:fix` πŸ§‘β€πŸ’»
branch: actions/lint-fix
commit-message: 'chore(lint): --fix πŸ€– ✨'
labels: πŸ€– bot
title: 'chore(lint): --fix πŸ€– ✨'
token: ${{ steps.generate-token.outputs.token }}