Skip to content

Commit e8ebb06

Browse files
authored
Create node.js.yml
1 parent 91896fb commit e8ebb06

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/node.js.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Node.js CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-node@v3
12+
with:
13+
cache: "npm"
14+
- run: npm ci
15+
- run: npm run build
16+
- run: npm run type
17+
- run: npm test

0 commit comments

Comments
 (0)