Skip to content

馃悰 catch persistence initialisation errors #157

馃悰 catch persistence initialisation errors

馃悰 catch persistence initialisation errors #157

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
tags-ignore:
- nuxt@*
- v*
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install pnpm
id: pnpm-install
uses: pnpm/action-setup@v2
with:
run_install: false
- name: Get pnpm store
id: pnpm-store
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-store.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build packages
run: pnpm run build
- name: Run tests
run: pnpm run test