Skip to content

Switch from ve to unocss #972

Switch from ve to unocss

Switch from ve to unocss #972

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: pnpm/[email protected]
- name: Setup Node.js environment 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile --ignore-scripts
- name: Lint
run: pnpm lint
- name: Run Build and Tests
# Will run the step even if lint step failed
if: success() || failure()
run: pnpm run build-test
env:
CI: true