feat: add cicd and renovate dependabot config

This commit is contained in:
Bart van der Braak 2024-02-16 08:49:20 +01:00
parent eed9c4161f
commit a8f31f82b8
4 changed files with 227 additions and 0 deletions

38
.github/workflows/linting.yaml vendored Normal file
View file

@ -0,0 +1,38 @@
name: Linting
on: [pull_request]
permissions:
checks: write
contents: write
jobs:
run-checks:
name: Run checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout Git repository
uses: actions/checkout@v4.1.1
- name: Setup pnpm
uses: pnpm/action-setup@v3.0.0
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install Node.js dependencies
run: pnpm install --frozen-lockfile
- name: Run linters
uses: wearerequired/lint-action@v2.3.0
with:
eslint: true
prettier: true