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.
1 parent 33a160e commit 4a0c871Copy full SHA for 4a0c871
.github/dependabot.yml
@@ -0,0 +1,13 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: github-actions
4
+ directory: /
5
+ schedule:
6
+ interval: daily
7
+ target-branch: 'main'
8
+
9
+ - package-ecosystem: npm
10
11
12
13
.github/workflows/test.yml
@@ -0,0 +1,22 @@
+name: Test
+on:
+ pull_request:
+ push:
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
14
+ - name: Install dependencies
15
+ run: npm install
16
17
+ - name: Build
18
+ run: npm run build
19
20
+ - name: Lint
21
+ run: npm run lint
22
0 commit comments