Add linter workflow

This commit is contained in:
Kristjan ESPERANTO 2024-12-10 20:20:10 +01:00
parent 00800b9ac4
commit fd3c1142b7

26
.github/workflows/automated-tests.yaml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Automated Tests
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Check linting
run: npm run lint