Skip to content

Commit beb6f93

Browse files
committed
info up
1 parent b265342 commit beb6f93

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

.github/workflows/main.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,7 @@ jobs:
4040
node-version: 20.16.0
4141
cache: pnpm
4242
- name: Install dependencies
43-
run: |
44-
if [ -e pnpm-lock.yaml ]; then
45-
pnpm i --frozen-lockfile
46-
elif [ -e yarn.lock ]; then
47-
yarn install --frozen-lockfile
48-
elif [ -e package-lock.json ]; then
49-
npm ci
50-
else
51-
npm i
52-
fi
43+
run: pnpm i --frozen-lockfile
5344
- name: Build
5445
run: pnpm build
5546
env:

README.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
# Setup
1+
# Vue playground
2+
### The project uses [PNPM](https://pnpm.io/) as a main package manager
23

3-
## Create `.env` like `.env.example`
4-
## Run `yarn install` to install libs
4+
## Setup
5+
### 1. Create `.env` like `.env.example`
6+
### 2. Dependencies installation
57
```shell
6-
yarn install
8+
pnpm i --frozen-lockfile
79
```
8-
## Run `yarn dev` to run dev mode
10+
### 3. Starting the development server
911
```shell
10-
yarn dev
12+
pnpm start
13+
```
14+
15+
#### 4. Starting the storybook server
16+
```shell
17+
pnpm storybook
1118
```

0 commit comments

Comments
 (0)