We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5dee143 + 9cd58b0 commit 961c03cCopy full SHA for 961c03c
.github/dependabot.yml
@@ -0,0 +1,12 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: 'npm'
4
+ directory: './'
5
+ schedule:
6
+ interval: 'daily'
7
+
8
+ - package-ecosystem: 'github-actions'
9
10
11
12
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
+name: Code CI
+on:
+ push:
+ pull_request:
+jobs:
+ build:
+ name: Build and test code
+ runs-on: ubuntu-latest
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
16
+ - name: Setup bun
17
+ uses: oven-sh/setup-bun@v1
18
+ with:
19
+ bun-version: latest
20
21
+ - name: Install packages
22
+ run: bun install
23
24
+ - name: Build code
25
+ run: bun run build
26
27
+ - name: Test
28
+ run: bun run test
0 commit comments