Skip to content

Commit 0604a81

Browse files
committed
add workflows
1 parent 17d8534 commit 0604a81

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.github/workflows/qa-check.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: QA Checks
2+
3+
on:
4+
workflow_dispatch:
5+
workflow_call:
6+
push:
7+
branches:
8+
- main
9+
pull_request:
10+
branches:
11+
- main
12+
13+
jobs:
14+
testing:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v3
19+
- name: Setup node
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: 16
23+
- name: Install dependencies
24+
run: npm ci
25+
- name: Test build
26+
run: npm run build
27+
- name: Run linter
28+
run: npm run lint
29+
- name: Run formatter
30+
run: npm run format
31+
- name: Run tests
32+
run: make run-test
File renamed without changes.

renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base"
5-
]
3+
"extends": ["config:base"]
64
}

0 commit comments

Comments
 (0)