Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

fix: button variants #32

fix: button variants

fix: button variants #32

Workflow file for this run

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@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
- name: 👀 Lint
run: pnpm lint
- name: 🚀 Build
run: pnpm build
env:
VITE_TEST_DB_URL: ${{ secrets.VITE_TEST_DB_URL }}