Skip to content

chore(deps): update root #199

chore(deps): update root

chore(deps): update root #199

Workflow file for this run

name: Main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-test:
name: πŸ“š Main
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-store-main-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-main-
- 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 }}