Skip to content

fix(deps): update dependency @trpc/server to v11.0.0-next-beta.300 #235

fix(deps): update dependency @trpc/server to v11.0.0-next-beta.300

fix(deps): update dependency @trpc/server to v11.0.0-next-beta.300 #235

Workflow file for this run

name: "Pull Request"
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
filter:
permissions:
contents: read
runs-on: ubuntu-22.04
outputs:
deploy: ${{ steps.changes.outputs.deploy }}
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# https://github.com/marketplace/actions/paths-changes-filter
- name: Paths Changes Filter
uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1
id: changes
with:
filters: |
deploy:
- 'apps/**/*'
- 'packages/**/*'
- 'package.json'
deploy:
permissions:
contents: read
deployments: write
pull-requests: write
runs-on: ubuntu-22.04
needs: filter
if: needs.filter.outputs.deploy == 'true'
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@3bc85396a273ed82bba5e53a15174bbf9dba095c # v2.0.2
- name: Install deps
run: bun install
# https://github.com/marketplace/actions/vercel-action
- name: Deploy to Vercel
uses: amondnet/vercel-action@225d234cfe5340ca1f9a6cd158338126b5b6845f # v25.1.1
id: vercel
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-comment: true
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID}}
vercel-version: "32.6.0"
- name: Lighthouse
uses: foo-software/[email protected]
with:
gitHubAccessToken: ${{ secrets.GITHUB_TOKEN }}
urls: ${{ steps.vercel.outputs.preview-url }}