Skip to content

Commit df3fa5e

Browse files
ci
1 parent 3652127 commit df3fa5e

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.cfignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
.github

.github/workflows/build.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Use Node.js
12+
users: actions/setup-node@v4
13+
- run: npm ci
14+
- run: npm run build
15+
- run: npm test

0 commit comments

Comments
 (0)