Skip to content

Commit be9f8fa

Browse files
committed
🤖 CI: update config
1 parent 42274bd commit be9f8fa

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ updates:
55
schedule:
66
interval: "daily"
77
allow:
8-
# Update all dependencies and devDependencies
98
- dependency_type: "all"

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,25 @@ on:
44
pull_request:
55
branches:
66
- "master"
7+
8+
jobs:
9+
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

Comments
 (0)