Skip to content

Commit 7eeff59

Browse files
committed
deploy
1 parent 7de8637 commit 7eeff59

File tree

2 files changed

+1167
-5824
lines changed

2 files changed

+1167
-5824
lines changed

.github/workflows/cd.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
push:
3+
branches: [main]
4+
jobs:
5+
deploy:
6+
name: Deploy
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Check out code
11+
uses: actions/checkout@v4
12+
13+
- name: Set up Node
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 22
17+
18+
19+
- name: Install dependencies
20+
run: |
21+
rm -f package-lock.json
22+
npm install
23+
npm ci
24+
- name: build
25+
run: npm run build

0 commit comments

Comments
 (0)