Skip to content

Merge pull request #112 from local-first-web/bump-vite-5.2 #113

Merge pull request #112 from local-first-web/bump-vite-5.2

Merge pull request #112 from local-first-web/bump-vite-5.2 #113

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
branches:
- main
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: Install and build
run: |
pnpm install
pnpm build
- name: Run tests
run: pnpm test