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

first commit

first commit #1

Workflow file for this run

name: CI
jobs:
build:
name: Build
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Build
run: npm run build