Skip to content

Commit 99ca1d6

Browse files
authored
Create build-test-deploy.yml
1 parent e63abd7 commit 99ca1d6

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build-test-deploy
2+
on: push
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- name: checkout repo
10+
uses: actions/checkout@v4
11+
- name: use node.js
12+
uses: actions/setup-node@v4
13+
with:
14+
node-version: '20.x'
15+
- run: npm install
16+
- run: npm run build
17+

0 commit comments

Comments
 (0)