We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3652127 commit df3fa5eCopy full SHA for df3fa5e
.cfignore
@@ -1 +1,2 @@
1
-node_modules
+node_modules
2
+.github
.github/workflows/build.yml
@@ -0,0 +1,15 @@
+name: CI
+
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