Skip to content

chore(deps): update root #544

chore(deps): update root

chore(deps): update root #544

Workflow file for this run

name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types:
- edited
- labeled
- opened
- synchronize
- reopened
jobs:
build-test:
if: github.event.label.name == 'test' || contains(github.event.pull_request.labels.*.name, 'test')
name: 📦 Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2.2.4
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-tests-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-tests-
- name: 📦 Install deps (with cache)
run: pnpm install --child-concurrency 3
- name: 👀 Lint
run: pnpm lint
- name: 🚀 Build
run: pnpm build
- name: 🧪 Test
run: pnpm test
env:
VITE_TEST_DB_URL: ${{ secrets.VITE_TEST_DB_URL }}
- name: 🧪 Test with coverage
run: pnpm coverage
env:
VITE_TEST_DB_URL: ${{ secrets.VITE_TEST_DB_URL }}
- name: 📝 Upload coverage
if: always()
uses: davelosert/vitest-coverage-report-action@v1