chore(deps-dev): bump the gomod-update group with 6 updates #4
Workflow file for this run
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: 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 | |