Skip to content

chore(deps-dev): bump the npm-update group across 1 directory with 10 updates #14

chore(deps-dev): bump the npm-update group across 1 directory with 10 updates

chore(deps-dev): bump the npm-update group across 1 directory with 10 updates #14

Workflow file for this run

name: Test Branch
on:
push:
branches: [ main ]
pull_request:
merge_group:
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
- uses: volta-cli/action@v4
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Run pnpm install
run: pnpm install
- name: Run pnpm lint
run: pnpm run lint
- name: Run pnpm test
run: pnpm run test