Skip to content

Commit cead45f

Browse files
authored
Add CI build
1 parent d135e15 commit cead45f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build
2+
3+
on: workflow_dispatch
4+
5+
defaults:
6+
run:
7+
working-directory: .
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js 18.x
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: 18.x
20+
- run: npm run build

0 commit comments

Comments
 (0)