Skip to content

Commit 6cbd192

Browse files
committed
Add github workflows
1 parent f3df6b4 commit 6cbd192

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: pull_request
4+
5+
jobs:
6+
ci:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: 18
13+
- run: npm ci --unsafe-perm
14+
- run: npm run build
15+
- run: npm test

.github/workflows/npm-publish.yml

Whitespace-only changes.

0 commit comments

Comments
 (0)