mirror of
https://github.com/edward-shen/MMM-pages.git
synced 2024-12-22 00:35:09 -08:00
Add linter workflow
This commit is contained in:
parent
00800b9ac4
commit
fd3c1142b7
1 changed files with 26 additions and 0 deletions
26
.github/workflows/automated-tests.yaml
vendored
Normal file
26
.github/workflows/automated-tests.yaml
vendored
Normal 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
|
Loading…
Reference in a new issue