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 42274bd commit be9f8faCopy full SHA for be9f8fa
.github/dependabot.yml
@@ -5,5 +5,4 @@ updates:
5
schedule:
6
interval: "daily"
7
allow:
8
- # Update all dependencies and devDependencies
9
- dependency_type: "all"
.github/workflows/main.yml
@@ -4,3 +4,25 @@ on:
4
pull_request:
branches:
- "master"
+
+jobs:
+ install-and-test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v3
14
15
+ - name: Use Nodejs v16
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: 16
19
+ cache: "npm"
20
21
+ - name: Install Node modules
22
+ run: npm install
23
24
+ - name: Lint
25
+ run: npm run lint:check
26
27
+ - name: Prettier
28
+ run: npm run prettier:check
0 commit comments