Skip to content

fix: lint.yaml workflow name should be lint #5

fix: lint.yaml workflow name should be lint

fix: lint.yaml workflow name should be lint #5

Workflow file for this run

name: build
on:
push:
branches:
- 'md3'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm type-check
- name: Build
run: pnpm build
- name: Rename dist
run: mv dist Matecho
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Matecho.zip
path: Matecho