Skip to content

Commit f7f7ef9

Browse files
authored
ci: fix deployment (#4)
1 parent 7ac28c0 commit f7f7ef9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/deployment.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,20 @@ jobs:
88
name: Deployment
99
runs-on: ubuntu-latest
1010
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v3
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version: '20'
18+
cache: 'npm'
19+
20+
- name: Install dependencies
21+
run: npm install
22+
23+
- name: Build library
24+
run: npm run build
25+
1126
- name: Trigger Deployment
1227
run: npm run deploy

0 commit comments

Comments
 (0)