Skip to content

Commit

Permalink
add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
beuluis committed Oct 15, 2022
1 parent 17d8534 commit 0604a81
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/qa-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: QA Checks

on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Test build
run: npm run build
- name: Run linter
run: npm run lint
- name: Run formatter
run: npm run format
- name: Run tests
run: make run-test
File renamed without changes.
4 changes: 1 addition & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
"extends": ["config:base"]
}

0 comments on commit 0604a81

Please sign in to comment.