Skip to content

Commit 63f08ae

Browse files
committed
Add CI/CD Pipelines
1 parent 08e5e10 commit 63f08ae

1 file changed

Lines changed: 17 additions & 18 deletions

File tree

.github/workflows/build.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
name: Build
22
on:
3-
push:
4-
branches: [main]
3+
push:
4+
branches: [main]
55

66
jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
name: Checkout version,
11-
uses: actions/checkout@v3
12-
name: Use Node.js
13-
uses: actions/setup-node@v4
14-
with:
15-
node-version: "20"
16-
cache: "npm"
17-
name: Install Devendencies
18-
run: npm cli
19-
name: Lint
20-
run: npm run lint
21-
name: Prettify
22-
run: npm run prettify
23-
name: Build Inter
24-
run: npm run build
25-
10+
- name: Checkout version
11+
uses: actions/checkout@v3
12+
- name: Use Node.js
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: "20"
16+
cache: "npm"
17+
- name: Install Dependencies
18+
run: npm install
19+
- name: Lint
20+
run: npm run lint
21+
- name: Prettify
22+
run: npm run prettify
23+
- name: Build Inter
24+
run: npm run build

0 commit comments

Comments
 (0)