Skip to content

Commit d1cc001

Browse files
Create build-test-deploy.yml
1 parent e22fcd7 commit d1cc001

File tree

1 file changed

+14
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)