Skip to content

feat: basic Caddy config (#90) #153

feat: basic Caddy config (#90)

feat: basic Caddy config (#90) #153

Workflow file for this run

name: Lint files
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies and lint files
run: |
npm ci
npm run lint