Skip to content

chore(deps-dev): bump the gomod-update group with 6 updates #4

chore(deps-dev): bump the gomod-update group with 6 updates

chore(deps-dev): bump the gomod-update group with 6 updates #4

Workflow file for this run

name: Test Branch
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
env:
VOLTA_FEATURE_PNPM: "1"
steps:
- uses: actions/checkout@v4
- name: Setup turbo cache
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- uses: volta-cli/action@v4
- name: Run pnpm install
run: |
pnpm install
git diff --exit-code
- name: Run lint
run: pnpm run lint
- name: Run build
run: pnpm run build