This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
chore: update package.json and dependencies #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
pull-requests: write | |
contents: read | |
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@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: pnpm | |
- name: 📦 Install dependencies | |
run: pnpm install --frozen-lockfile | |
- 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@v2 |